triton-llvm-releases VS llvm-project

Compare triton-llvm-releases vs llvm-project and see what are their differences.

llvm-project

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. (by llvm)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
triton-llvm-releases llvm-project
1 356
19 26,327
- 2.9%
5.7 10.0
8 months ago 5 days ago
Shell C++
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

triton-llvm-releases

Posts with mentions or reviews of triton-llvm-releases. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-02.
  • Building a Compiler with MLIR (Multi-Level Intermediate Representation) [pdf]
    3 projects | news.ycombinator.com | 2 May 2023
    this is quickly getting better

    >Much of MLIR requires compiling from source, from what I can tell

    you can get apt packages from https://apt.llvm.org/ and build projects out of tree. you can also get packages from conda (https://github.com/conda-forge/mlir-feedstock). finally, if you look around on github you'll find tarred up releases too maintained by downstream users (e.g.https://github.com/ptillet/triton-llvm-releases).

    you can also (as of very recently) build mlir-opt plugins just like for clang:

    https://github.com/llvm/llvm-project/tree/main/mlir/examples...

llvm-project

Posts with mentions or reviews of llvm-project. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-06-09.
  • Compilers Are (Too) Smart
    2 projects | news.ycombinator.com | 9 Jun 2024
    The background here is that "ctpop < 2" or "ctpop == 1" (depending on zero behavior) is LLVM's canonical representation for a "power of two" check. It is used on the premise that the backend will expand it back into a cheap bitwise check and not use an actual ctpop operation. However, due to complex interactions in the backend, this does not actually happen in this case (https://github.com/llvm/llvm-project/issues/94829).
  • What errors are lurking in LLVM code?
    1 project | dev.to | 29 May 2024
    The checked project version is LLVM 18.1.0.
  • Qualcomm's Oryon LLVM Patches
    1 project | news.ycombinator.com | 15 May 2024
    I think they should probably set LoopMicroOpBufferSize to a non-zero value even if its not microarchitecturally accurate. This value is used in LLVM to control whether partial and runtime loop unrolling are enabled (actually only for that). Although some targets override this default behaviour, AArch64 only overrides it to enable partial and runtime unrolling for in-order models. I've left a review comment https://github.com/llvm/llvm-project/pull/91022/files#r16026... and as I note there, the setting seems to have become very divorced from microarchitectural reality if you look at how and why different scheduling models set it in-tree (e.g. all the Neoverse cores, set it to 16 with a comment they just copied it from the A57).
  • Yes, Ruby is fast, but…
    4 projects | dev.to | 9 May 2024
    In conclusion, none of the proposed changes to the Ruby version of the code makes a dent in the Crystal version. This is not entirely Crystal's doing: it uses the LLVM backend, which generates very optimized binaries.
  • Qt and C++ Trivial Relocation (Part 1)
    3 projects | news.ycombinator.com | 7 May 2024
    As far as I know, libstdc++'s representation has two advantages:

    First, it simplifies the implementation of `s.data()`, because you hold a pointer that invariably points to the first character of the data. The pointer-less version needs to do a branch there. Compare libstdc++ [1] to libc++ [2].

    [1]: https://github.com/gcc-mirror/gcc/blob/065dddc/libstdc++-v3/...

    [2]: https://github.com/llvm/llvm-project/blob/1a96179/libcxx/inc...

    Basically libstdc++ is paying an extra 8 bytes of storage, and losing trivial relocatability, in exchange for one fewer branch every time you access the string's characters. I imagine that the performance impact of that extra branch is tiny, and massively confounded in practice by unrelated factors that are clearly on libc++'s side (e.g. libc++'s SSO buffer is 7 bytes bigger, despite libc++'s string object itself being smaller). But it's there.

    The second advantage is that libstdc++ already did it that way, and to change it would be an ABI break; so now they're stuck with it. I mean, obviously that's not an "advantage" in the intuitive sense; but it's functionally equivalent to an advantage, in that it's a very strong technical answer to the question "Why doesn't libstdc++ just switch to doing it libc++'s way?"

  • Playing with DragonRuby Game Toolkit (DRGTK)
    2 projects | dev.to | 6 May 2024
    This Ruby implementation is based on mruby and LLVM and it’s commercial software but cheap.
  • Add support for Qualcomm Oryon processor
    1 project | news.ycombinator.com | 3 May 2024
  • Ask HN: Which books/resources to understand modern Assembler?
    6 projects | news.ycombinator.com | 21 Apr 2024
    'Computer Architeture: A Quantitative Apporach" and/or more specific design types (mips, arm, etc) can be found under the Morgan Kaufmann Series in Computer Architeture and Design.

    "Getting Started with LLVM Core Libraries: Get to Grips With Llvm Essentials and Use the Core Libraries to Build Advanced Tools "

    "The Architecture of Open Source Applications (Volume 1) : LLVM" https://aosabook.org/en/v1/llvm.html

    "Tourist Guide to LLVM source code" : https://blog.regehr.org/archives/1453

    llvm home page : https://llvm.org/

    llvm tutorial : https://llvm.org/docs/tutorial/

    llvm reference : https://llvm.org/docs/LangRef.html

    learn by examples : C source code to 'llvm' bitcode : https://stackoverflow.com/questions/9148890/how-to-make-clan...

  • Flang-new: How to force arrays to be allocated on the heap?
    1 project | news.ycombinator.com | 14 Apr 2024
    See

    https://github.com/llvm/llvm-project/issues/88344

    https://fortran-lang.discourse.group/t/flang-new-how-to-forc...

  • The LLVM Compiler Infrastructure
    1 project | news.ycombinator.com | 9 Apr 2024

What are some alternatives?

When comparing triton-llvm-releases and llvm-project you can also consider the following projects:

mlir-feedstock - A conda-smithy repository for mlir.

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

Lark - Lark is a parsing toolkit for Python, built with a focus on ergonomics, performance and modularity.

gcc

SDL - Simple Directmedia Layer

cosmopolitan - build-once run-anywhere c library

windmill - Open-source developer platform to turn scripts into workflows and UIs. Fastest workflow engine (5x vs Airflow). Open-source alternative to Airplane and Retool.

STL - MSVC's implementation of the C++ Standard Library.

Graal - GraalVM compiles Java applications into native executables that start instantly, scale fast, and use fewer compute resources 🚀

dmd - dmd D Programming Language compiler

rust - Empowering everyone to build reliable and efficient software.

avr-hal - embedded-hal abstractions for AVR microcontrollers

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured