anonymoushn a month ago

My own solution which is ~1ms faster uses some other pattern that was found experimentally, but I cannot seem to get it to go any faster by tuning the parameters, and the #1 spot remains slightly out of reach.

Alexander Monakov has called the attention of the highload Telegram chat to this paper[0], saying:

  Haswell is tricky for memory bw tuning, as even at fixed core frequency, uncore frequency is not fixed, and depends on factors such as hardware-measured stall cycles:

  > According to the respective patent [15], the uncore frequency depends on the stall cycles of the cores, the EPB of the cores, and c-states

  > ... uncore frequencies–in addition to EPB and stall cycles–depend on the core frequency of the fastest active core on the system. Moreover, the uncore frequency is also a target of power limitations.
So one wonders if it's not really a matter of reading the RAM in the right pattern to appease the prefetchers but of using values in the right pattern to create the right pattern of stalls to get the highest frequency.

[0]: https://tu-dresden.de/zih/forschung/ressourcen/dateien/proje...

sYnfo a month ago

FYI vien [0] figured out that simply compiling with "-static -fno-pie" and _exit(0)-ing at the end puts the solution presented here to 15000 points and hence #4 on the leaderboard. Pretty funny.

[0] https://news.ycombinator.com/user?id=vient

  • a_t48 a month ago

    Optimizing the leftovers loop to

        #pragma clang loop vectorize(enable)
        #pragma clang loop interleave(enable)
        for (; offset < length; offset += 4) {
            const auto x = ((uint32_t\*)start)[offset / 4];
            count += ((x & 0xFF) == 0x7F);
            count += ((x & 0xFF00) == 0x7F00);
            count += ((x & 0xFF0000) == 0x7F0000);
            count += ((x & 0xFF000000) == 0x7F000000);
        }
    
    also gives some points. It'd probably be more if I could be bothered to break apart your assembly. :)
dinobones a month ago

Is there a path forward for compilers to eek out these optimization gains eventually? Is there even a path?

550x gains with some C ++ / mixed gnarly low level assembly vs standard C++ is pretty shocking to me.

  • monktastic1 a month ago

    FYI, "eke." "Eek" is an expression of alarm or surprise.

    • bozey07 a month ago

      C++ alarms and surprises me, to be fair.

  • vient a month ago

    Note that "standard C++" solution uses std::cin while optimized one uses mmap - completely different things, a lot of speed comes just from that. Would've been nice to compare with solution having optimized input and otherwise standard summing loop.

    • anonymoushn a month ago

      For a solution that contains this stuff

        const u8 *file_lo;
        file_lo = (const u8*)mmap(0,250000000ull,PROT_READ,MAP_PRIVATE|MAP_POPULATE,0,0);
        const u8 *file_hi = file_lo + 250000000ull;
        u64 count = 0;
        while (file_lo < file_hi) {
          if (*file_lo == 127) {
              ++count;
          }
          file_lo++;
        }
      
      I got a bit under 54ms. The solution in the article runs in a bit under 16ms.
      • vient a month ago

        Nice. Did some quick tests with your code on site, got score of ~34000 - best solution is around 14700, so this one is only 2.3 times slower.

        Used clang with -Ofast -march=native -static. Funnily, gcc gets only 54000 with the same options, 1.6 times slower.

        • vient a month ago

          Wow, changing `count` type from uint64_t to uint32_t or int radically changes results - now gcc gets 26500 and clang gets 25000, that's just 1.7 times slower than current best solution.

          So you can get 25k with following code, clang -Ofast -std=c++17 -march=native -static

              #include <iostream>
              #include <cstdint>
              #include <sys/mman.h>
              #include <unistd.h>
          
              int main() {
                auto file_lo = (const uint8_t*)mmap(0,250000000ull,PROT_READ,MAP_PRIVATE|MAP_POPULATE,STDIN_FILENO,0);
                int count = 0;
                for (uint32_t i = 0; i < 250000000; ++i) {
                  if (file_lo[i] == 127) {
                      ++count;
                  }
                }
                std::cout << count << std::endl;
                _exit(0);
                return 0;
              }
          • sYnfo a month ago

            Neat! I'll add the best solution without explicit SIMD/asm in this thread to the post after I wake up, it's a great datapoint.

      • _a_a_a_ a month ago

        Bit rusty here but what if you replaced

            if (*file_lo == 127) {
                ++count;
        
        with

            count += (*file_lo == 127);
        
        That might save you the occasional branch mis-prediction, and might possibly open up some hardware-level loop optimisations. Any difference?
maxbond a month ago

Usually, it's fair game to use all of the information presented in an exam-style question to derive your answer.

With that in mind, I propose the following solution.

`print(976563)`

  • anonymoushn a month ago

    You can submit that, it will fail.

lumb63 a month ago

Does anyone have any tips for similar wizardry-level SIMD optimization on ARM?

rini17 a month ago

Can this optimization be applied to matmult for us, critters who are running llama on cpu? XD

  • twoodfin a month ago

    I don't think this really helps: It's a trick to drive maximum possible memory bandwidth in service of a single executing thread which can process data as fast as it's being delivered.

    A parallel matrix multiply running across every core shouldn't have any trouble maximizing memory bandwidth utilization.

    • owlbite a month ago

      KV-cache based LLM inference is normally significantly memory bound on the matrix-vector multiply. This is (part of) why the quantization-based approaches are so popular.

      • twoodfin a month ago

        It's memory bound and single threaded?

        • rini17 a month ago

          I found it memory bound so that it was fastest with 6 threads on my 8 thread xeon.

          • twoodfin a month ago

            Right: So this trick probably doesn’t help much. You only need prefetch when there isn’t enough fetch otherwise.

_a_a_a_ a month ago

"The solution presented here is ~550x faster than the following naive program."

   ... std::cin >> v; ...
Oh come on! That's I/O for every item, I'm surprised it's not even slower.
  • gpderetta a month ago

    Cin is buffered, do it is not technically doing I/O for every time. It is still dog slow of course.

    • _a_a_a_ a month ago

      Oops, buffered of course, you're right.

  • BoardsOfCanada a month ago

    Yeah, how does the proposed solution solve the problem as stated: "Print the number of bytes whose value equals 127 in a 250MB stream of bytes uniformly sampled from [0, 255] sent to standard input."

    • anonymoushn a month ago

      When stdin is a file, as it is in this case, you can mmap it.

      • Iwan-Zotow a month ago

        technically not an equivalent problem - you can't map a stream

        • anonymoushn a month ago

          The whole problem statement isn't equivalent to the substring of the problem statement that GP quoted? I agree. For example, the whole problem statement includes a part that specifies that stdin is a file stored in hugetlbfs.

TacticalCoder a month ago

Le met hazard a guess: that blog post was not written by a LLM!?