https://stackoverflow.com/questions/50605/signed-to-unsigned-conversion-in-c-is-it-always-safe
本身不算什么新鲜的事情,但是真正有趣的是只有g++报了这个warning
本身不算什么新鲜的事情,但是真正有趣的是只有g++报了这个warning
~ > cat /tmp/test.c
#include "stdio.h"
#include "stdlib.h"
inline int test(){
return 1;
}
int main(){
if (test()) {
printf("test\n");
}
}
~ > gcc /tmp/test.c -o /tmp/test
/usr/bin/ld: /tmp/ccwgqM5z.o: in function `main':
test.c:(.text+0xe): undefined reference to `test'
collect2: error: ld returned 1 exit status
这就是C语言吗.jpg
Explanation
Reddit
Inline function undefined reference : r/C_Programming
141K subscribers in the C_Programming community. The subreddit for the C programming language
To incoming English speakers: I don't plan to release any English contents in this channel though you might find equivelant posts in my English blog: https://blog.lazym.io. I appreciate your interests in my channel.
Lazymio's Blog
Hi! I'm Ziqiao Kong, a 2nd year Ph.D. student supervised by [Prof. Liu Yang](https://personal.ntu.edu.sg/yangliu/) at Nanyang Technological University. I obtained my master degree in computer science
2023 年 12 月 45 号更新今年文章!
现在拥有 2 台 64C128T + 1T 的机器了,尽享数框框的乐趣
还有就是小心 System Phd
https://blog.ihomura.cn/2024/01/14/EPYC-%E5%B7%A5%E4%BD%9C%E7%AB%99%E9%80%89%E8%B4%AD%E5%AE%9E%E6%88%98%E4%B8%8E%E7%BB%8F%E9%AA%8C%E5%88%86%E4%BA%AB/
现在拥有 2 台 64C128T + 1T 的机器了,尽享数框框的乐趣
https://blog.ihomura.cn/2024/01/14/EPYC-%E5%B7%A5%E4%BD%9C%E7%AB%99%E9%80%89%E8%B4%AD%E5%AE%9E%E6%88%98%E4%B8%8E%E7%BB%8F%E9%AA%8C%E5%88%86%E4%BA%AB/
澪同学的博客 - 个人的技术分享
EPYC 服务器选购实战与经验分享
前言 自从开始读 Ph.D. 之后,对算力的要求逐步增长,因此一直想购入强劲的服务器用于科研玩装机,感谢近几年的 AMD 强势,我居然只用了大概 4 万元就拿下了两台 EPYC 7B13 64C128T + 1T 内存的工作站,这篇文章就来简单分享一下整个实战过程和一些经验。
https://blog.lazym.io/2024/07/19/Escaping-from-sync-to-async-world-and-vice-versa/
如何在 rust 的 sync 和 async 反复横跳?
今年的更新指标完成啦
如何在 rust 的 sync 和 async 反复横跳?
Lazymio's Blog
Escaping from sync to async world with tokio, and vice-versa
MotivationWriting rust is a great pleasure when the code is either purely synchronous or asynchronous. However, the awkward thing kicks in if you try to jump between the two worlds. Although there is
上图Typescript代码在5.5.5的结果
Anonymous Quiz
31%
编译失败,因为 a.filter 返回的不是 Promise
29%
编译成功,输出 [1,2,3]
40%
编译成功,输出 []
https://blog.ihomura.cn/2025/02/09/DeepSeek-R1-671b-%E9%83%A8%E7%BD%B2%E7%AC%94%E8%AE%B0/
Deepseek R1 已经成为了我 o1 的平替。
Deepseek R1 已经成为了我 o1 的平替。
澪同学的博客 - 个人的技术分享
DeepSeek R1 671b 满血版部署笔记
前言 DeepSeek R1 是最近大火的大语言模型,主要是可以比肩 o1 的性能以及完全开源。之前一篇文章所说,我手里有两台 1T 内存的 EPYC 机器,因此正好可以用来部署 R1。本文主要记录一下利用 llama.cpp 部署过程中的经验。 TL;DR: 对于 llama.cpp 以及衍生的 ollama 部署方案,推理速度基本和内存带宽成线性,符合 Roofline 模型。