Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
31–40 of 298 posts
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#32Could someone with experience explain: what's the theoretical minimum hardware requirement for llama 7B, 15B, etc, that still provides output on the order of It seems like we can pull some tricks, like using F16, and some kind of quantization, etc. At the end of the day, how much overhead is left that can be reduced? What can I expect to have running on 16gb ram with a 3080 and a midrange AMD processor?
If you can't fit it all in vram you can still run it but it'll be slooooow, at least that's been my experience with the 30b.
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#33I don't have the hardware to run the 60B model to test this at the moment - How does it perform with programming, for example making a basic python script to scrape a website, or a bash script, etc? I've managed to run the 13B* at 8bit with decent performance on a 4090 - but it's only 24GB of VMRAM so I've been struggling to run the 30B at anything more then a snails pace.
you mean the 13B ?
I'm not exactly sure how these numbers were chosen, they seem a bit odd?
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#34Could someone with experience explain: what's the theoretical minimum hardware requirement for llama 7B, 15B, etc, that still provides output on the order of It seems like we can pull some tricks, like using F16, and some kind of quantization, etc. At the end of the day, how much overhead is left that can be reduced? What can I expect to have running on 16gb ram with a 3080 and a midrange AMD processor?
Well I was able to run the original code with the 7B model on 16GB vram: https://news.ycombinator.com/item?id=35013604 The output I got was underwhelming, though I did not attempt any tuning.
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#35Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#36I actually really like minimal implementations of state-of-the-art systems because the code is much easier to understand (modern frameworks are super-complex) but I wonder what it means long-term if you don't need frameworks.
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#37Don't know anything about ML can someone can explain me what is this hype about?
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#38The performance on Macbook with M1 Pro is said to be 20 tokens/s https://twitter.com/ggerganov/status/1634282694208114690
Re: Llama.cpp: Port of Facebook's LLaMA model in C/C++, with Apple Silicon support
#39I don't have the hardware to run the 60B model to test this at the moment - How does it perform with programming, for example making a basic python script to scrape a website, or a bash script, etc? I've managed to run the 13B* at 8bit with decent performance on a 4090 - but it's only 24GB of VMRAM so I've been struggling to run the 30B at anything more then a snails pace.
The 13b and 30b run quite well on a 4090 at 4-bit quantization.