Home Knowledge Base Rolled Throughput Yield (RTY)

Rolled Throughput Yield (RTY) is the cumulative probability of passing all process steps without defects — calculated by multiplying individual step yields, revealing true process capability better than final yield alone since it accounts for hidden rework.

What Is RTY?

Why RTY Matters

Calculation

def calculate_rty(step_yields):
    rty = 1.0
    for yield_value in step_yields:
        rty *= yield_value
    return rty * 100

# Example
steps = [0.98, 0.95, 0.97, 0.99, 0.96]  # 5 process steps
rty = calculate_rty(steps)
print(f"RTY: {rty:.1f}%")  # 85.7%

RTY vs Final Yield

Improvement Strategy: Focus on lowest-yield steps first for maximum RTY improvement.

RTY is the truth teller — revealing the real efficiency of manufacturing by accounting for all rework, making it essential for identifying true improvement opportunities.

rolled throughput yield (rty)rolled throughput yieldrtyproduction

Explore 500+ Semiconductor & AI Topics

From EUV lithography to CUDA optimization — search the full knowledge base or chat with our AI assistant.