Developer Runs a 90M Parameter Conversational LLM on a 2004 Sony PSP
Developer /u/liright created the open-source LLMPSP project, successfully porting and running a 90M parameter conversational language model on the original 2004 Sony PSP console. The model runs locally on the handheld hardware at an inference speed of approximately 0.5 to 0.6 tokens per second, taking 1 to 3 minutes per reply. This project highlights the extreme lower bounds of running quantized local LLMs on severely resource-constrained vintage hardware without any cloud reliance. It illustrates how modern model optimization techniques can push lightweight AI models onto legacy embedded devices designed two decades ago. The developer noted that 90 million parameters represent the hardware's practical ceiling before inference speeds become unusable. While the model is mostly a fun proof-of-concept capable of generating short poems, non-functional code, and basic factual answers alongside frequent hallucinations, the code is publicly available on GitHub.
## BACKGROUND
The Sony PlayStation Portable (PSP), released in 2004, features a 333 MHz MIPS processor and just 32 MB to 64 MB of system RAM. Running Large Language Models (LLMs) typically requires gigabytes of memory and dedicated accelerators, but techniques like quantization reduce weight precision to fit smaller models into tight RAM constraints.