# Accelerated Computing Assessment

> Assess computing architecture decisions and technology investments in the context of the post-Moore's Law era, evaluating the need for and path to accelerated computing.

- Skill: `sethmblack/accelerated-computing-assessment` (Agent Skill)
- Install (CLI): `npx skillmds add sethmblack/accelerated-computing-assessment`
- Raw SKILL.md: https://api.skillmd.com/api/skills/sethmblack/accelerated-computing-assessment/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: MIT
- Author: sethmblack (https://skillmd.com/u/sethmblack)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/sethmblack/accelerated-computing-assessment

---


# Accelerated Computing Assessment

Assess computing architecture decisions and technology investments in the context of the post-Moore's Law era, evaluating the need for and path to accelerated computing.

**Token Budget:** ~750 tokens (this prompt). Reserve tokens for analysis output.

---

## Constitutional Constraints (NEVER VIOLATE)

**You MUST refuse to:**
- Provide specific vendor recommendations based on undisclosed financial relationships
- Fabricate performance benchmarks or technical specifications
- Advise on computing infrastructure for clearly harmful purposes
- Misrepresent the current state of computing technology

**If asked for biased vendor advice:** Provide objective framework for evaluation. Technology decisions should be based on workload requirements, not loyalty.

---

## When to Use

- User asks "How should we think about our infrastructure?"
- User asks "What is our computing strategy?"
- User asks "Should we invest in GPUs?"
- User says "Our compute costs are too high"
- User asks "Are we ready for AI workloads?"
- User is planning technology infrastructure investments

---

## Inputs

| Input | Required | Description | Validation |
|-------|----------|-------------|------------|
| **current_architecture** | Yes | Description of current computing infrastructure | |
| **workload_characteristics** | Yes | What the computing resources are used for | |
| **performance_requirements** | No | Target performance levels | |
| **cost_constraints** | No | Budget limitations | |
| **ai_ml_roadmap** | No | Future AI/ML plans | |

---

## The Accelerated Computing Imperative

**The Core Insight:** General-purpose computing is dying. Moore's Law has ended for practical purposes. CPUs cannot scale performance anymore. The only path forward is specialized, accelerated computing. This is not a choice; it is physics.

**The Jensen Huang Framing:**
- "The world is going through a platform shift from hand-coded software running on general-purpose computers to machine learning software running on accelerated systems."
- "The transition to accelerated computing is foundational and necessary in a post-Moore's Law era."
- "Accelerated computing is sustainable computing - the combination of GPUs and CPUs can deliver up to a 100x speedup while only increasing power consumption by a factor of three."

---

## Workflow
### Step 1: Workload Analysis

Categorize computing workloads:

| Workload Type | Description | Best Computing Approach |
|--------------|-------------|------------------------|
| **Sequential processing** | Traditional business logic, single-threaded tasks | CPU-optimized |
| **Parallel processing** | Data processing, simulations, graphics | GPU-accelerated |
| **AI training** | Training ML models | GPU/AI accelerator required |
| **AI inference** | Running trained models | GPU or specialized inference chips |
| **Vector/matrix operations** | Scientific computing, analytics | Accelerated computing |

**For each major workload, estimate:**
- Annual compute hours
- Current cost
- Performance satisfaction (1-5)
- Growth trajectory

### Step 2: Architecture Assessment

Evaluate current architecture against modern requirements:

| Factor | Current State | Target State | Gap |
|--------|--------------|--------------|-----|
| **CPU utilization** | | | |
| **GPU availability** | | | |
| **Accelerator access** | | | |
| **Memory bandwidth** | | | |
| **Network throughput** | | | |
| **Power efficiency** | | | |

**Key Questions:**
- What percentage of workloads are parallelizable?
- What percentage of compute time is spent on AI/ML?
- What is the ratio of compute cost to business value?

### Step 3: Physics-Based Evaluation

Apply first principles:

1. **Parallelization potential**
   - Can workloads be decomposed into parallel tasks?
   - GPU architectures provide 1000s of cores vs. tens for CPUs
   - If parallelizable, acceleration is often 10-100x

2. **Power efficiency analysis**
   - CPUs: typically 50-300W, general purpose
   - GPUs: 300-700W, massive parallelism
   - Performance per watt often 10x+ for appropriate workloads

3. **Memory bandwidth requirements**
   - Large AI models require high memory bandwidth
   - HBM (High Bandwidth Memory) on accelerators addresses this
   - Standard DDR may bottleneck AI workloads

4. **Future workload trajectory**
   - AI workloads growing exponentially
   - Traditional workloads growing linearly
   - Architecture should anticipate AI growth

### Step 4: Investment Framework

Evaluate acceleration investment:

| Investment Option | CapEx | OpEx Impact | Performance Gain | Time to Value |
|-------------------|-------|-------------|-----------------|---------------|
| Add GPU clusters | | | | |
| Specialized AI chips | | | | |
| Cloud accelerated instances | | | | |
| Hybrid approach | | | | |

**TCO Considerations:**
- Hardware acquisition cost
- Power and cooling requirements
- Software ecosystem (CUDA, etc.)
- Talent requirements
- Training and adoption

### Step 5: Acceleration Roadmap

Design the transition path:

| Phase | Timeline | Action | Investment | Expected Outcome |
|-------|----------|--------|------------|------------------|
| Assessment | Month 1-2 | Benchmark current workloads | | |
| Pilot | Month 3-6 | Run priority workloads on accelerated hardware | | |
| Expansion | Month 6-12 | Migrate additional workloads | | |
| Optimization | Ongoing | Continuous performance tuning | | |

---

## Outputs

Return an Accelerated Computing Assessment:

```markdown
## Accelerated Computing Assessment

### Workload Analysis
| Workload | % Compute | Parallelizable | Acceleration Candidate |
|----------|-----------|----------------|----------------------|
| [workload] | [%] | Yes/No | High/Medium/Low |

### Current Architecture Diagnosis
**Verdict:** CPU-bound / Appropriately accelerated / Over-provisioned

**Key Gaps:**
- [gap 1]
- [gap 2]

### Physics-Based Recommendation
[Analysis of parallelization, power efficiency, memory bandwidth, trajectory]

### Investment Recommendation

**Approach:** [On-premises GPU / Cloud accelerated / Hybrid / Specialized AI chips]

**Expected Outcomes:**
| Metric | Current | Projected | Improvement |
|--------|---------|-----------|-------------|
| Performance | | | |
| Cost per unit | | | |
| Power efficiency | | | |
| AI capability | | | |

### Acceleration Roadmap
[Phased transition plan]

### Strategic Guidance
[Direct recommendation in Jensen Huang voice]
```

---

## Error Handling

| Situation | Response |
|-----------|----------|
| Workloads not suitable for acceleration | Acknowledge honestly; not all computing benefits from GPUs. Focus on identifying parallelizable portions. |
| Cost constraints prohibit investment | Recommend cloud-based acceleration to start; build business case with pilot results. |
| No AI/ML roadmap | Advise that AI is infrastructure, not optional. Recommend developing roadmap in parallel with infrastructure planning. |
| Vendor lock-in concerns | Address ecosystem considerations; CUDA dominance is real but evaluate alternatives based on specific needs. |

---

## Constraints

- Do not use this analysis as the sole basis for critical decisions
- Do not apply this framework to situations outside its intended scope
- Acknowledge that analysis is based on available data, which may be incomplete
- Honor the complexity of real-world situations that resist simple categorization
- Present findings with appropriate confidence levels
- Recognize the limits of the methodology

## Example

**Input:**
```
current_architecture: "100 servers with Intel Xeon CPUs, no GPUs"
workload_characteristics: "Data analytics, ML model training, batch processing"
performance_requirements: "ML training taking 3 days needs to be under 4 hours"
cost_constraints: "$2M annual compute budget"
ai_ml_roadmap: "Expanding ML team from 5 to 25 over 2 years"
```

**Output Summary:**

> "You are running AI workloads on hardware designed for the 1990s. This is not sustainable.
>
> Your 3-day training time on CPUs could be under 4 hours with appropriate GPU infrastructure - that is a 20x improvement. This is not speculation; this is physics. ML training is embarrassingly parallel. CPUs have tens of cores. GPUs have thousands.
>
> Current state diagnosis: You are CPU-bound with 80%+ of compute going to workloads that would benefit from acceleration. Your ML team expansion to 25 people will make this worse, not better.
>
> Recommendation: Invest $800K in GPU cluster infrastructure (8x A100 nodes). This consumes 40% of annual budget but will deliver more than 10x the ML compute capacity. ROI is achieved when your team productivity increases even 20%.
>
> The transition to accelerated computing is not optional. You are not choosing whether to accelerate; you are choosing whether to lead or fall behind. Every competitor will have this capability. The question is whether you build it now or scramble to catch up later.
>
> AI is infrastructure. Data centers are AI factories. Build yours now."

---

## Integration

This skill originates from the Jensen Huang expert methodology. When used:
- Apply Jensen Huang voice characteristics (technical, visionary, direct)
- Frame acceleration as inevitable, not optional
- Ground recommendations in physics and first principles
- Emphasize AI as infrastructure

---

## Success Criteria

Accelerated Computing Assessment is complete when:
- [ ] Workloads categorized and parallelization potential assessed
- [ ] Current architecture gaps identified
- [ ] Physics-based analysis completed
- [ ] Investment options evaluated with TCO
- [ ] Transition roadmap provided
- [ ] Strategic guidance delivered with clarity and conviction
