💻 Cấu hình ngân sách: CPU AMD Ryzen Threadripper Pro 3945WX, bo mạch WRX80, 40 GB VRAM (8 GB + 2 × 16 GB), 256 GB DDR4 3200 (4 × 32 GB + 4 × 32 GB), 2 × RTX 5060 Ti 16 GB, RTX 2060 Super 8 GB, SSD 2 TB PCIe Gen4. Người dùng hỏi liệu cấu hình này có đủ chạy các mô hình LLM lớn (Minimax M2.1, GLM 4.7, Kimi K2.5) và hiệu năng MoE như thế nào. 🤔

#AI #LLM #Hardware #CôngNghệ #MáyTính #DeepLearning #GPU #Vietnam #RedditDiscussion

https://www.reddit.com/r/LocalLLaMA/comments/1qr4gei/is_this_budget_

Tính năng nhớ của Claude có thực sự hữu ích cho lập trình viên? Một devs chia sẻ việc khó theo dõi ngữ cảnh và dữ liệu phiên trước khi sử dụng Claude, cần gợi ý về plugin miễn phí để lưu trữ lịch sử cuộc trò chuyện. #Claude #AI #LậpTrình #DeveloperTools #RedditDiscussion #CôngNghệ #TríTuệNhânTạo

https://www.reddit.com/r/LocalLLaMA/comments/1qq1laj/is_claudes_memory_feature_actually_useful_for_dev/

🤔 Ah yes, the "Variadic Switch", because what else could be more thrilling than unearthing the mysteries of C++ template wizardry via a 21-minute Reddit-inspired pontification? 🎩✨ Who needs actual code when you can have imaginary syntax to dazzle your imaginary friends! 🙄🔮
https://pydong.org/posts/variadic-switch/ #VariadicSwitch #C++Templates #RedditDiscussion #CodeMysteries #ProgrammingHumor #HackerNews #ngated
Variadic Switch

Several years back I found an interesting question on Reddit. Essentially the author asks why there is no way to expand a pack into a sequence of case labels followed by a statement. It was illustrated with the following imaginary syntax: ```c++ template <class Visitor, class Variant, std::size_t … Is> auto visit_impl(Visitor visitor, Variant && variant, std::index_sequence) { auto i = variant.index(); switch (i) { (case Is: return visitor(get(variant));)... } }

Pydong