• 3 Posts
  • 18 Comments
Joined 1 month ago
cake
Cake day: August 18th, 2026

help-circle


  • jjj@piefed.blahaj.zonetolinuxmemes@lemmy.worldDon't mind me. Keep enjoying your OS.
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    1
    ·
    edit-2
    3 days ago

    I read through the exact message chain that article is referencing some time ago, which did not lead me to the conclusion the article would suggest. It seems that he consistently refers to AI use from the perspective of finding bugs more so than than fixing them, which he could definitely do a better job clarifying.

    The message

    https://lore.kernel.org/linux-media/CAHk-=wi4zC+Ze8e+p3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmail.com/

    Subject: Re: Linking Patchwork with Sashiko?

    [snip]

    I think it makes the point of sashiko - helping maintainers - unachievable. If the point to not use
    LLMs in general, let’s discuss this, not how to make each use case more complex.

    It seems like [1] expresses a very anti-LLM position in general

    Yes.

    And no, that’s not the position of the Linux kernel.

    I realize that some people really dislike AI, but this is an area
    where I’m willing to absolutely put my foot down as the top-level
    maintainer.

    Linux is not one of those anti-AI projects, and if somebody has issues
    with that, they can do the open-source thing and fork it.

    [snip]

    Yes, it can also be a somewhat painful tool, both for maintainer
    workloads and just from a “it keeps finding embarrassing bugs”
    standpoint.

    [snip]

    (emphasis/snips mine)

    EDIT: Note: sashiko is an LLM driven code review tool someone runs on the linux kernel. This entire discussion was about a code review tool.





  • For each operation my CPU’s ALU can do, I need to find a bit mask that turns it on only for the desired set of 8 bit opcodes. The bit mask is of the form [01_].[01_][01_][01_][01_][01_][01_][01_][01_] where 0 and 1 mean the bit has to match and _ means it doesn’t matter. The bit before the . is the xor of all the other bits in the opcode.

    The solver has to figure out both which opcodes represent each instruction and what bit masks are needed to give them the desired operations.

    EDIT

    I ultimately switched to a slightly different approach. It turns out the xor part of the mask isn’t very useful since the combinations I need aren’t super complicated. The trouble was that an operation could only trigger for a power of 2 of opcodes, so I added a secondary mask to each operation:

    Base mask: still [01_] x8\ Secondary mask: [01_x] x8 (x means both 0 and 1)

    For the secondary mask, 1 matches only if the current bit or the one to the left is true (left of the leftmost is the rightmost). 0 is the same but with nand in stead of or. x, requiring both, only matches if exactly one matches.

    Using 1 or 0 multiplies the number of matching opcodes by 3/4 (or a more complicated fraction if their areas of influence overlap), which allows much more freedom.

    Due to restrictions in the game and my "hard"ware, I’m only able to use [1_x] for the secondary mask, since a nand gate doesn’t respond right to being hooked up to a bunch of toggleable and inputs but xor/or gates do (xor is just as fast in game).




  • ::: spoiler

    Most so called inventions and discoveries are things that others have already done or will do anyway but get no credit for.

    I’m under the impression that in most of those cases it is a matter of duplication of work, rather than plagiarism as is being discussed here.

    For this problem, the reward is also 1 million dollars. Surely you’re not claiming it’s ok for Sam Altman to take the prize over someone who did the majority of the work.

    I say this as someone who releases all their software under open source licenses which maximize the ability to share under the condition that attribution and the ability to further share/alter is preserved.

    There is such a thing as malicious sharing of information/software/academic works, e.g. the distribution of proprietary software tools, plagiarism, etc. Harmful sharing ultimately limits the sharing of other information such as original authorship and source code. :::

    tl;dr

    If the Clay Math Institute knew for certain that Sam Altman was lying about authorship, they wouldn’t want to give him the prize. That makes these actions deceptive and by principles of radical sharing of knowledge, morally wrong.

    I appreciate your perspective, thanks for the discussion.


  • Knowledge cannot be stollen. That concept is human fabrication. Knowledge is meant to be shared and once share is flow freely.

    Stealing knowledge in an academic context means using it without credit, aka plagiarism, much unlike the common definition for media.

    Attribution doesn’t restrict the flow of information, it simply gives credit where it is due. Refusing to attribute a work, strictly speaking, limits the flow of authorial information.

    As stated by the article, if sharing work may be punished by a bad actor people will selfishly restrict the flow of useful information in response to protect themselves from plagiarism. Doing something that makes academics choose between further advancement of their field and their own self interest is the principle malfeasance.






  • It’s not about voting for the lesser evil, but against the worse one. The way the United States is structured, which influences the way its people think about voting and vice versa, you are given only two options when voting for president:

    • Vote for the Democrat one
    • Vote for the Republican one

    But… you might think you’re clever and say “I should just vote for neither of them, nobody will stop me”. If your state has RCV then put your preferred candidate as a first pick and just place Democrat before Republican. Problem solved, no more strategic voting. Unfortunately, precious few states have adopted this for any elections, let alone the presidency.

    In states without RCV, there are 3 equivalent cases from your perspective:

    • Vote Republican: Increment their number by 1
      • Overall effect +1 for Republicans
    • Vote Democrat: Increment a threatening score by 1, thereby requiring Republicans to gain 1 more vote to win
      • Overall effect -1 for Republicans
    • Don’t vote or vote for a non threatening party/candidate
      • Overall effect 0 for Republicans

    Forgive me for assuming the reader wants to get Republicans (and Republican aligned Democrats) out of office. In this case, it is your responsibility to vote for the most threatening candidate. It’s a sick trick of game theory, which is why RCV is so important.