Let's look at serious scientific and high performance production grade software
- tensors + grad PyTorch C++
- tensors + grad TensorFlow C++
- tensors numpy C
- random forests XGBoost C++
- computer vision OpenCV C++
- statistics, MCMC Stan C++
- math R R/C/Fortran
- math Julia Julia/C/C++
- math Matlab Matlab/Java/C/C++
- general purpose Python default interpreter is written in C
- molecular simulation Gromacs C++
- solid engineering simulation and 3D modeling Solidworks, Autocad C++
- video processing ffmpeg, gstreamer C/C++
- audio processing google/mediapipe C++
- GPU parallel algorithms CUDA C++
- game engines (physics simulation, business logic, networking) Unity, Unreal Engine C++
- network servers (Erlang VM, Node.JS/V8, HHVM) C++
- Google data warehouse (GFS, BigTable, MapReduce) C++
- open source data warehouse (HDFS, Hadoop, Kafka, Spark) Java/Scala
- popular databases MySQL, PostgreSQL, Redis, Memcached C
- time series database InfluxDB Go (considered C/C++ though)
- productivity tools MS Excel, Google Chrome, Firefox, Photoshop C++
- geo algorithms uber/h3 C
- geo algorithms google/s2 C++
- Google Maps C++
UPD: 2020-06-08
C++ is leading by a large margin. Its ecosystem is astonishing. Pretty much everything of significance has been written and maintained in C++. Bare in mind, other languages like Golang or Rust have been around for around 10 years, still main applications did not migrate to them. Even more, TensorFlow itself is not in Golang, even though they are both from Google and Tensorflow created 6 years later. It is true that Golang is having momentum in service development — things like networking, ORM, business logic — yet it is used in not much anything else.
Some languages was made by mistake (Javascript), some languages are too minimal (Golang), some are not scalable (Python). Maybe, then C++ has plenty of good besides performance? It has first class OOP, generics, operator overloading, standard library, gRPC and Apache Thirft, with RAII memory leaks are rare. Where I am going with this? If you are going to write high performance software likely it is going to be in C++.