-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy path.env.example
More file actions
55 lines (40 loc) · 1.72 KB
/
.env.example
File metadata and controls
55 lines (40 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Performance Engineering Benchmark Environment Configuration
# Copy this file to .env or .env.local and fill in your values
# .env.local takes precedence over .env
# =============================================================================
# LLM Analysis Configuration
# =============================================================================
# Default LLM provider: anthropic or openai
LLM_PROVIDER=openai
# Enable/disable LLM analysis (set to false to skip LLM calls)
LLM_ANALYSIS_ENABLED=true
LLM_MAX_TOKENS=131072
# Anthropic (Claude) Configuration
ANTHROPIC_API_KEY=
ANTHROPIC_MODEL=claude-opus-4-5
# OpenAI Configuration
OPENAI_API_KEY=
OPENAI_MODEL=gpt-5.1
# =============================================================================
# Profiling Configuration
# =============================================================================
# Default profile type: none, minimal, deep_dive, roofline
DEFAULT_PROFILE_TYPE=deep_dive
# Timeout multiplier for profiling operations
PROFILING_TIMEOUT_MULTIPLIER=1.0
# =============================================================================
# Hardware Configuration (optional overrides)
# =============================================================================
# Force specific GPU architecture detection
# GPU_ARCH=blackwell
# Override peak performance numbers (useful for custom/underclocked GPUs)
# PEAK_BF16_TFLOPS=5040
# PEAK_FP8_TFLOPS=10080
# HBM_BANDWIDTH_TBS=8.0
# =============================================================================
# Output Configuration
# =============================================================================
# Default artifacts directory
ARTIFACTS_DIR=./artifacts
# Log level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO