glbinding VS std-simd

Compare glbinding vs std-simd and see what are their differences.

glbinding

A C++ binding for the OpenGL API, generated using the gl.xml specification. (by cginternals)

std-simd

std::experimental::simd for GCC [ISO/IEC TS 19570:2018] (by VcDevel)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
glbinding std-simd
3 9
820 544
0.0% 0.2%
4.1 1.1
about 2 months ago about 1 year ago
C++ C++
MIT License 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.

glbinding

Posts with mentions or reviews of glbinding. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-02.
  • Questions about the official xml registry (gl.xml).
    1 project | /r/opengl | 25 Jul 2022
    Ever heard of https://glbinding.org ?
  • Low-level OpenGL abstractions
    3 projects | /r/opengl | 2 Apr 2022
    You should checkout glbinding, it might give you some ideas for your own wrapper.
  • Thriving in a Crowded and Changing World: C++ 2006–2020 [pdf]
    5 projects | news.ycombinator.com | 16 Jul 2021
    I have based my career on top of C++/backend/soft-real time systems.

    I still have to read the full paper, thanks for the post!

    Many people rant about C++, but, IMHO, overall, taking into account ecosystem, tools, etc. C++ stands as an almost unbeatable technology when you put everything together. It has quirks, asymmetries and all of that.

    But since C++11 it is nicer to use and all the standards after it have been improving on it: generic lambdas, structured bindings, string non-template parameters, constexpr and consteval... it is amazing what you can do with C++ that is difficult or almost impossible to do with other languages.

    On the missing pieces I would mention that you need to use macros to have some kind of reflection for members and pattern matching and networking would be really nice to have.

    Modules are still an experiment implementation-wise, but hey, they will improve on the side of hiding implementation details by a big margin.

    As for the ecosystem, nowadays you have CMake (whose language sucks badly) and Meson. Together with Conan things have improved a lot since I started coding in around 2001.

    Pack that with an IDE like CLion or Visual Studio + Resharper or lightweight IDE (Emacs + Lsp and the like) and you have an environment that is very competitive and whose code can be compiled almost anywhere. From ARM to x86, MIPS and even Webassembly.

    That is why I think C++ is still the way to go if what you want is performance: you also have interfaces such as OpenCL/GL/Vulkan/SIMD libraries (though not C++ standard) where you can access hardware. Also, vendors and open source have things such as https://github.com/cginternals/glbinding

std-simd

Posts with mentions or reviews of std-simd. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-29.
  • A proposal for the next version of C [pdf]
    1 project | news.ycombinator.com | 20 Jan 2024
    neither proposing nor taking a position on this possible addition)

    > ... For completeness we would also like to add that a serious issue is that C still lacks vector operations.

    Those are good points. The authors don't take a stance on it, but I do think that syntax for packed structs should be standardized. IMO, so should syntax for inline assembly (both as optional features). These are already common extensions; this is exactly what they should standardize. The additions of "typeof" and #embed are also good examples of this (they had been talking about adding #embed since 1995 [1]).

    As for vector instructions, I'm unsure how it could be implemented in a standard way, but I'm not against it. Maybe something like this [2], but with the syntax changed for C instead of C++.

    [1]: https://groups.google.com/g/comp.std.c/c/zWFEXDvyTwM

    [2]: https://github.com/VcDevel/std-simd

  • SIMD Everywhere Optimization from ARM Neon to RISC-V Vector Extensions
    6 projects | news.ycombinator.com | 29 Sep 2023
    Interesting, thanks for sharing :)

    At the time we open-sourced Highway, the standardization process had already started and there were some discussions.

    I'm curious why stdlib is the only path you see to default? Compare the activity level of https://github.com/VcDevel/std-simd vs https://github.com/google/highway. As to open-source usage, after years of std::experimental, I see <200 search hits [1], vs >400 for Highway [2], even after excluding several library users.

    But that aside, I'm not convinced standardization is the best path for a SIMD library. We and external users extend Highway on a weekly basis as new use cases arise. What if we deferred those changes to 3-monthly meetings, or had to wait for one meeting per WD, CD, (FCD), DIS, (FDIS) stage before it's standardized? Standardization seems more useful for rarely-changing things.

    1: https://sourcegraph.com/search?q=context:global+std::experim...

    2: https://sourcegraph.com/search?q=context:global+HWY_NAMESPAC...

  • SIMD intrinsics and the possibility of a standard library solution
    16 projects | /r/cpp | 8 Jan 2023
    std-simd - 451 GH stars
  • Optimizing compilers reload vector constants needlessly
    7 projects | news.ycombinator.com | 6 Dec 2022
    Bad news. For SIMD there are not cross-platform intrinsics. Intel intrinsics map directly to SSE/AVX instructions and ARM intrinsics map directly to NEON instructions.

    For cross-platform, your best bet is probably https://github.com/VcDevel/std-simd

    There's https://eigen.tuxfamily.org/index.php?title=Main_Page But, it's tremendously complicated for anything other than large-scale linear algebra.

    And, there's https://github.com/microsoft/DirectXMath But, it has obvious biases :P

  • SPO 600 project part 3 - Analysis
    2 projects | dev.to | 21 Apr 2022
    But after I worked with auto-vectorization(I wrote about that in part 2), I decided to switch and try myself by adding intrinsics if I was able. You can track my progress here:https://github.com/VcDevel/std-simd/pull/35
  • SPO600 project part 2
    2 projects | dev.to | 13 Apr 2022
    STD-SIMD it's almost the same project I was working, but a bit advance https://github.com/VcDevel/std-simd.
  • The Efficiency of Multithreaded Loops
    2 projects | /r/programming | 4 Nov 2021
    If you are worried about Intel vs Arm vs whatever, use https://github.com/VcDevel/std-simd
  • Thriving in a Crowded and Changing World: C++ 2006–2020 [pdf]
    5 projects | news.ycombinator.com | 16 Jul 2021
    or https://github.com/KhronosGroup/Vulkan-Hpp which help quite a bit. Or https://github.com/VcDevel/std-simd.

    If you want GUIs, same, you have at least (but not only) Qt or WxWidgets.

    Want to interface scripting? Pybind11, Boost.Python, WrenBind17 for Wren, Sol2 for Lua... and all things that interface to C work also if you feel brave...

    I really think that when it is about getting the job done... C++ goes a long way towards the task.

    This is my 20 year experience of C++, almost 13 of those years professionally. Now, back to read the paper. :)

  • All C++20 core language features with examples
    10 projects | news.ycombinator.com | 7 Apr 2021
    ... I just checked your link and wouldn't say that any of these languages have SIMD more than C++ has it currently -

    - Java: incubation stage (how is that different from https://github.com/VcDevel/std-simd). Also Java is only getting it soonish for... amd64 and aarch64 ??

What are some alternatives?

When comparing glbinding and std-simd you can also consider the following projects:

GLFW - A multi-platform library for OpenGL, OpenGL ES, Vulkan, window and input

VulkanExamples - Examples and demos for the Vulkan C++ API

OpenSubdiv - An Open-Source subdivision surface library.

nsimd - Agenium Scale vectorization library for CPUs and GPUs

Skia - Skia is a complete 2D graphic library for drawing Text, Geometries, and Images.

ozz-animation - Open source c++ skeletal animation library and toolset

OpenVDB - OpenVDB - Sparse volume data structure and tools

C++ REST SDK - The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.

bgfx - Cross-platform, graphics API agnostic, "Bring Your Own Engine/Framework" style rendering library.

conan-center-index - Recipes for the ConanCenter repository

Horde3D - Horde3D is a small 3D rendering and animation engine. It is written in an effort to create an engine being as lightweight and conceptually clean as possible.

Vc - SIMD Vector Classes for C++