Futures
Access hundreds of perpetual contracts
CFD
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
CFD
Stock CFD Derivatives
US Stocks
Access real US stocks and ETFs
HK Stocks
Trade quality Hong Kong-listed stocks
Korean Stocks
SK Hynix
Real Korean stocks and top assets
Stock Futures
High leverage, 24/7 trading
Tokenized Stocks
Backed by real stock assets
IPO Access
Unlock full access to global stock IPOs
GUSD
3.8%
Mint GUSD for Treasury RWA yields
Stocks Activities
Trade Popular Stocks and Unlock Generous Airdrops
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
IPO Access
Unlock full access to global stock IPOs
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
Promotions
AI
Gate AI
Your all-in-one conversational AI partner
Gate AI Bot
Use Gate AI directly in your social App
GateClaw
Gate Blue Lobster, ready to go
Gate for AI Agent
AI infrastructure, Gate MCP, Skills, and CLI
Gate Skills Hub
10K+ Skills
From office tasks to trading, the all-in-one skill hub makes AI even more useful.
Making Large AI Models More Accessible to Home PCs
For more than three months, I have been quietly researching methods to reduce the hardware and memory load required to run very large AI models -particularly mixture-of-experts models such as GLM-5.2-on ordinary home computers.
This work forms part of my master’s degree in computer science, and the early results are promising.
I now have a working prototype, and I plan to share more about it soon.
The objective is not simply to create a smaller version of the model or claim that hundreds of billions of parameters can magically fit inside a consumer GPU.
The complete model remains available, but the system attempts to load, retain and transfer only the components required for the current stage of inference.
My research involves areas such as:
Dynamic expert residency
Predictive expert prefetching
Hierarchical loading across VRAM, system RAM and NVMe storage
Cache-aware routing
Reducing unnecessary parameter movement
Adapting the execution path to the hardware available
I recently saw another project exploring a similar direction, which encouraged me to make my own work public.
However, I believe some current approaches may be underestimating the real inference load.
Counting only the parameters assigned to active experts does not represent the complete cost of inference. Shared layers, attention states, the KV cache, routing decisions, expert transitions, memory bandwidth, page faults and CPU-to-GPU synchronisation can all become major bottlenecks.
A system may appear efficient when measuring only active parameters while still performing poorly during real end-to-end inference because it repeatedly transfers data between storage, RAM and VRAM.
My approach is therefore not focused only on selecting fewer experts.
It also considers where model components should reside, when they should be moved, what should remain cached and how upcoming requirements may be predicted without loading unnecessary parts of the model.
The research is still ongoing, and there is much more testing to complete. However, the results so far suggest that there may be a practical path towards running much larger models on consumer hardware with significantly lower peak memory pressure.
The prototype is already operational, although it is still experimental and requires further optimisation, validation and testing across different hardware configurations.
I intend to share the prototype, or an early public demonstration of it, soon.
The experiments are producing promising results.
And I believe large-model inference on home computers can become considerably more efficient than it is today.
More will be shared soon. #AI