Build your own GPU
https://www.furygpu.com/blog/hello https://eater.net/8bit https://digilent.com/shop/arty-z7-zynq-7000-soc-development-board/ https://www.amd.com/en/products/system-on-modules/kria.html
https://www.furygpu.com/blog/hello https://eater.net/8bit https://digilent.com/shop/arty-z7-zynq-7000-soc-development-board/ https://www.amd.com/en/products/system-on-modules/kria.html
Amazon DynamoDB: redis/key-pais store, no sql Amazon EMR (Elastic MapReduce): Apache Hadoop, Apache Spark, Apache Hive, and Presto Amazon Redshift: is based on PostgreSQL Amazon Athena: analysis data in S3…
The pybind11 make python calling any c++ function easier https://pybind11.readthedocs.io/en/stable/basics.html Also we can invoke python script from c++ as well: https://pybind11.readthedocs.io/en/stable/advanced/smart_ptrs.html Other alternatives: boost python https://www.boost.org/doc/libs/1_84_0/libs/python/doc/html/index.html
modules concept ( can put some limit/restrict on the template type ) template <template-parameter-list> concept concept-name = constraint-expression; https://ggulgulia.medium.com/c-20-concepts-part-1-the-basics-40f051c72776 #include <iostream> #include <vector>//first define a concept for print //lets call it…