Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/benchmark-tmpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,21 @@ on:
required: false
type: boolean
default: false
agentx-trace:
description: "Capture a short torch-profiler trace mid-replay (AgentX recipes that implement it)"
required: false
type: boolean
default: false
agentx-trace-delay-s:
description: "Seconds into the AgentX replay before the trace window opens"
required: false
type: string
default: ''
agentx-trace-window-s:
description: "Length of the trace window in seconds"
required: false
type: string
default: ''
eval-limit:
description: "Eval instance count: empty/full = whole split (default); N = first-N smoke slice"
required: false
Expand Down Expand Up @@ -186,6 +201,9 @@ env:
DURATION: ${{ inputs.duration }}
REQUIRE_POWER: ${{ inputs.require-power && '1' || '0' }}
AIPERF_EXPERIMENTAL_FAST: ${{ inputs.agentx-fast && '1' || '0' }}
AGENTX_TRACE: ${{ inputs.agentx-trace && '1' || '0' }}
AGENTX_TRACE_DELAY_S: ${{ inputs.agentx-trace-delay-s }}
AGENTX_TRACE_WINDOW_S: ${{ inputs.agentx-trace-window-s }}
EVAL_LIMIT: ${{ inputs.eval-limit }}
SWEBENCH_GEN_MODE: ${{ inputs.swebench-gen-mode }}
AIPERF_FAILED_REQUEST_THRESHOLD: '0.10'
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,21 @@ on:
required: false
type: boolean
default: false
agentx-trace:
description: "Capture a short torch-profiler trace mid-replay (AgentX recipes that implement it)."
required: false
type: boolean
default: false
agentx-trace-delay-s:
description: "Seconds into the AgentX replay before the trace window opens."
required: false
type: string
default: ""
agentx-trace-window-s:
description: "Length of the trace window in seconds."
required: false
type: string
default: ""
eval-limit:
description: "Eval instance count: empty/full = whole split (default); N = first-N smoke slice"
required: false
Expand Down Expand Up @@ -120,6 +135,21 @@ on:
required: false
type: boolean
default: false
agentx-trace:
description: "Capture a short torch-profiler trace mid-replay (AgentX recipes that implement it)."
required: false
type: boolean
default: false
agentx-trace-delay-s:
description: "Seconds into the AgentX replay before the trace window opens."
required: false
type: string
default: ""
agentx-trace-window-s:
description: "Length of the trace window in seconds."
required: false
type: string
default: ""
eval-limit:
description: "Eval instance count: empty/full = whole split (default); N = first-N smoke slice"
required: false
Expand Down Expand Up @@ -412,6 +442,9 @@ jobs:
total-cpu-dram-gb: ${{ matrix.config.total-cpu-dram-gb }}
duration: ${{ inputs.agentx-fast && '1200' || (inputs.duration-override != '' && inputs.duration-override || matrix.config.duration) }}
agentx-fast: ${{ inputs.agentx-fast }}
agentx-trace: ${{ inputs.agentx-trace }}
agentx-trace-delay-s: ${{ inputs.agentx-trace-delay-s }}
agentx-trace-window-s: ${{ inputs.agentx-trace-window-s }}
isl: '0'
osl: '0'
max-model-len: '0'
Expand Down
Loading