CPU raytracer multithreading

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

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

    A simple C++11 Thread Pool implementation

  • Consider using a threadpool so you don't profile the thread creation time. https://github.com/progschj/ThreadPool

  • CTPL

    Modern and efficient C++ Thread Pool Library

  • You’re spawning a new set of threads every frame. This can be extremely expensive, instead you want to reuse threads in a pool. Seeing as you’re new to C++, I wouldn’t recommend writing it yourself but instead use something like ctpl. Others, like Boost, should work fine as well.

  • 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