English
FPGA vs ASIC: Internal Structure, Differences, and the Future of the Industry
Let's take a deep dive into the inner workings of FPGAs and ASICs and explore the pros, cons, and business implications of both technologies. We'll start...
Founder of VLSI Korea. Staff Engineer at Synopsys — STA and physical-design methodology for advanced-node tape-outs. EE BS·MS · MBA. Writes from Seoul.
English
Let's take a deep dive into the inner workings of FPGAs and ASICs and explore the pros, cons, and business implications of both technologies. We'll start...
korean
FPGA와 ASIC의 내부 구조를 깊이 있게 파헤쳐보고 두 기술의 장단점 및 비즈니스적 의미까지 살펴보겠습니다. 반도체 칩 설계의 추상화 계층부터 시작하여, FPGA와 ASIC의 구조적 차이, FPGA vs ASIC 의 기술·비용·양산 관점 비교, 그리고 "GPU나 CPU도...
chinese
设置时间和保持时间 是数字电路中两个最重要的时序约束: 如果这两个条件不能同时满足,电路可能会进入不稳定状态并发生故障。 개요:通过飞机到达类比理解设置和保持 考虑一下机场的乘客登机系统。飞机准时起飞(时钟边缘)。乘客登机前需要满足两个条件: 在 VLSI...
russian
Время установки и время удержания - два наиболее важных временных ограничения в цифровых схемах: Если эти два условия не выполняются одновременно, схема...
English
Setup Time and Hold Time are two of the most important timing constraints in digital circuits: If these two conditions are not satisfied at the same time,...
korean
Setup Time과 Hold Time 은 디지털 회로의 타이밍 제약 중 가장 중요한 두 가지입니다. 이 두 조건을 동시에 만족하지 못하면 metastable state에 빠져 회로가 오작동할 수 있습니다. 개요: 비행기 도착 비유로 이해하는 Setup과 Hold 어떤 공항의...
korean
Clock Tree Synthesis (CTS) is a key step in physical design to evenly distribute the clock signal from the clock source to all flip-flops (FFs) on the...
korean
CTS(Clock Tree Synthesis) 는 클록 소스에서 칩의 모든 플립플롭(FF)까지 클록 신호를 균등하게 분배하는 물리설계 핵심 단계입니다. 목표는 Clock Skew(클록 도착 시간 차이) 를 최소화하고 Insertion Delay(신호 전파 지연) 를 제어하여...
chinese
满意度 (SAT) 问题可概括为以下问题: 变量能否设置为真/假,从而使给定的布尔公式为真? 例如,给定公式 f(x,y,z)=(x || y) & (!x || z), 这看起来很简单,但是当变量的数量达到数千或数万时, 2.MiniSat 是一种什么样的 SAT 求解器 MiniSat 是一种基于...
russian
Задача удовлетворимости (SAT) вкратце сводится к следующему вопросу: Можно ли установить переменные в True / False так, чтобы заданная булева формула была...
English
The Satisfiability (SAT) problem is summarized by the following question: Can the variables be set to True / False such that the given Boolean formula is...
korean
SAT(Satisfiability) 문제는 다음 질문으로 요약된다. 주어진 Boolean 수식이 True가 되도록 변수들을 True / False로 정할 수 있는가? 예를 들어, f(x,y,z)=(x || y) && (!x || z) 라는 수식이 있을 때, 이건 단순해...