TGTGInsighttelegram intelligenceLIVE / telegram public index
← Linuxgram 🐧

TGINSIGHT SIMILAR POSTS

Sib kontenut simili

Kanal tas-sors @linuxgram · Post #17841 · Fra 19

📰 AI Helped Uncover A "50-80x Improvement" For Linux's IO_uring Linux block maintainer and IO_uring lead developer Jens Axboe recently was debugging some slowdowns in the AHCI/SCSI code with IO_uring usage. When turning to Claude AI to help in sorting through the issue, patches were devised that can deliver up to a "literally yield a 50-80x improvement on the io_uring side for idle systems." The code is on its way to the Linux kernel... 🔗 Source: https://www.phoronix.com/news/AI-50-80x-IO-uring #linux#kernel

Riżultati

1 post simili nstab

Tfittxija: #derive

当前筛选 #derive清除筛选
Resource.rs

@resource_rs_channel · Post #4112 · 17/02/2022 02:20

[Reddit] Why derive(Copy, Clone) is different with derive(Clone) + impl Copy Hi, I've encountered an unexpected but explainable case, that #derive(Clone) enum A { A = 1, B = 2, C = 3, } impl Copy for A {} #derive(Clone, Copy) enum B { A = 1, B = 2, C = 3, } Expanded code as impl ::core::clone::Clone for A { #inline fn clone(self: &Self)