라벨이 Computer Architecture인 게시물 표시

구글 안티그래비티 완전 분석 — 모델·요금제·CLI 총정리

🚀 구글 안티그래비티(Antigravity) 완전 분석 구글이 2025년 11월 Gemini 3와 함께 공개한 에이전트 퍼스트(agent-first) IDE 안티그래비티는 Claude·GPT·Gemini를 한 도구에서 골라 쓰는 멀티모델 코딩 환경이다. 이 글에서는 ① 지원 모델과 요금제별 사용량의 실체, ② 실사용자 평가, ③ 구글의 방향성, ④ Claude Code와의 비교·연계, ⑤ CLI( agy )로 직접 쓰는 법까지 다섯 갈래를 차례로 정리한다. 자료 간 충돌이 있는 지점은 한쪽으로 단정하지 않고 양쪽을 모두 살려 표기했다. 📅 기준 시점: 2026년 6월 · 프리뷰 단계 정보로 수치는 변동 가능 1. 안티그래비티란 무엇인가 — 기초 정리 안티그래비티는 2025년 7월 구글이 24억 달러 규모 라이선스 계약 으로 영입한 전 Windsurf 팀이 설계를 주도했다. VSCode를 포크한 위에 자율 에이전트 오케스트레이션 계층을 얹은 구조다. 2026년 5월 Google I/O에서 발표된 안티그래비티 2.0 은 데스크탑 앱과 함께 공식 CLI agy 를 처음 공개하며 기존 Gemini CLI의 공식 후계자 자리를 확정했다. 핵심 정체성은 단순 코드 자동완성이 아니라 병렬 에이전트 오케스트레이션 이다. 여러 에이전트가 동시에 — 하나는 API, 하나는 테스트, 또 하나는 프론트엔드 — 작업을 나눠 진행하고, 각 에이전트는 계획·테스트 결과·스크린샷·영상을 담은 Artifact 를 남긴다. "사람이 한 줄씩 승인"하는 방식이 아니라 "에이전트들이 일을 마치고 사람이 사후 검수"하는 모델이다. flowchart TD A([사용자 작업 지시]) --> B[에이전트 A API 구현] A --> C[에이전트 B 테스트 작성] A --> D[에이전트 C UI 생성] B --> E[Artifact 계획·결과·영상] C --> E D --> E...

Unlocking the Magic: Your First Dive into Virtual Memory

Welcome, future computer scientists! I'm thrilled to have you here at Stanford, embarking on your journey into the fascinating world of computing. Today, we're going to pull back the curtain on one of the most fundamental, yet often mysterious, concepts in operating systems: Virtual Memory . You might think of your computer's RAM as its "working desk" – where it keeps things it's actively using. But what happens when your desk gets too cluttered, and you need to work on a massive project, or perhaps juggle many different tasks at once? This is where virtual memory shines, acting like a super-smart filing cabinet and an efficient personal assistant, all rolled into one. The Grand Illusion: What is Virtual Memory? Imagine you have a huge project, say, editing a massive video or running a complex simulation, that requires more memory than your computer's physical RAM can hold. Without virtual memory, you'd be stuck. Virtual memory solves this by creati...

Understanding DMA: How ARM's DMA-330 Revolutionizes Data Transfer

DMA: The Unsung Hero of High-Speed Data Transfer Ever wondered how your computer handles massive data transfers, like loading a game or streaming high-definition video, without slowing to a crawl? Much of that magic happens thanks to a clever piece of technology called Direct Memory Access (DMA) . It's like having a dedicated courier service for your data, allowing it to move directly between devices and memory without constantly bothering the main brain – the CPU. What Exactly is DMA? At its heart, Direct Memory Access (DMA) is a feature that allows hardware subsystems – think your graphics card, network adapter, or storage controller – to read from and write to main system memory (RAM) directly , without needing the CPU to manage every single byte of data. Traditionally, when a device needed to send or receive data, the CPU would be the intermediary. It would fetch data from the device, move it to memory, or fetch data from memory and send it to the device. This is like a man...