From Julia to C++ Struggle

This page summarizes the projects mentioned and recommended in the original post on /r/Julia

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • SPTK

    A suite of speech signal processing tools

  • For LinAlg https://eigen.tuxfamily.org/ is pretty popular. For speech signal processing one option is https://github.com/sp-nitech/SPTK

  • Fastor

    A lightweight high performance tensor algebra framework for modern C++

  • There are C++ libraries that deal with linear algebra and tensors that are able to produce fully vectorized code without requiring you to mess around with SIMD intrinsics. See, for instance, fastor, blaze, eigen and the huge Trillinos set of packages. C++ is very widely used when it comes to scientific HPC applications. All you need to do is google search or better yet, join r/cpp and r/cpp_questions and start asking away for the things you need. The C++ community is very welcoming and full of experts that will be able to help you.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • conan

    Conan - The open-source C and C++ package manager

  • The first thing you need to realize is that there is no standard package manager in C++. There is also no standardized build system. There are, though, very popular tools that most users would recommend. For package managing, use either Conan or vcpkg and CMake as the build system (note that these package managers can be integrated with CMake)

  • Google Test

    GoogleTest - Google Testing and Mocking Framework

  • Again, there is no standard testing suite so you would have to pick a third party library (that preferably integrates with your build system). Popular choices are the google test framework and catch2

  • Catch

    A modern, C++-native, test framework for unit-tests, TDD and BDD - using C++14, C++17 and later (C++11 support is in v2.x branch, and C++03 on the Catch1.x branch)

  • Again, there is no standard testing suite so you would have to pick a third party library (that preferably integrates with your build system). Popular choices are the google test framework and catch2

  • 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.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts