今日已更新 211 条资讯 | 累计 29353 条内容
关于我们

今日精选

HOT

最新资讯

共 29353 篇
第 210/1468 页
AI 资讯 Reddit r/programming

Vendor-agnostic ML inference on production edge devices

I work on PostSlate, a video editing tool, and this comes out of our own work. We run ML models on-device, face detection and embedding among other things, which means we can't assume anything about the user's GPU. NVIDIA discrete, AMD, Intel integrated, Apple Silicon, all of it. That rules out CUDA immediately, we needed one backend that runs everywhere. We landed on ncnn's Vulkan backend. Numbers on a 4070, fp16: ArcFace R50 (face embedding): 30 ms on ONNX CPU → 3 ms on ncnn Vulkan SCRFD (face detection): 25 ms → 2.5 ms Model size: ArcFace 174 MB (ONNX fp32) → 87 MB (ncnn fp16 weight storage) Of course the real speedup comes from offloading compute to the GPU, but this wouldn't be possible without the power of Vulkan. The speed wasn't even the deciding factor, it's that Vulkan drivers already exist on every machine we ship to. This means that we don't have to force the user to download a specific runtime and no vendor-specific installs. Full writeup with the rest of the numbers: https://getpostslate.com/blog/faster-local-inference submitted by /u/ppchaos [link] [留言]

/u/ppchaos 2026-07-28 20:07 3 原文
AI 资讯 The Verge AI

Smart rings are looking like my kind of AI gadget

Over the last few months, I've spent a lot of time talking to my computer. One underrated feature of the LLM revolution has been a remarkable leap in all kinds of dictation technology - even the fastest, cheapest models are getting very good at understanding and processing speech. I've tested lots of these apps, from […]

David Pierce 2026-07-28 20:00 4 原文
AI 资讯 Reddit r/programming

How to Prevent Duplicate Message Processing with Inbox Pattern

Duplicate message processing is something every event-driven system eventually faces. With at-least-once delivery, retries and redeliveries are expected. The challenge is making sure processing the same message twice does not create side effects. I've been looking into the Inbox Pattern as a consumer-side solution: track processed messages keep message tracking and business changes in the same transaction scope the idempotency check per consumer One approach is using a MassTransit pipeline filter so the idempotency logic stays outside the consumers. How do you usually handle this? Do you use Inbox Pattern, custom middleware, database constraints, or something else? submitted by /u/DotDeveloper [link] [留言]

/u/DotDeveloper 2026-07-28 19:22 3 原文
AI 资讯 InfoQ

Presentation: The Future of Engineering: Mindsets That Matter When Code Isn’t Enough

Ben Greene discusses how software engineers can adapt and thrive in an era of rapid AI code automation. Drawing on his startup experience, he explains key mindsets like starting simple, maintaining code comprehension, attacking hard problems first, and focusing on customer impact. He shares why human empathy, agency, and practical problem-solving remain irreplaceable when code is automated. By Ben Greene

Ben Greene 2026-07-28 19:10 8 原文