I did notice that a few supercomputers have been built on RISC, CISC doesn't really seem to be efficient when compared to RISC.
Horses for courses I take it?
For supercomputing, the biggest performance consideration is usually the amount of die area allocated to floating point pipelines. The relatively low area overhead of RISC (vs CISC) on the front-end of the chip is now a marginal consideration (it a huge issue back when there were no floating point pipelines at all). Intel has by far the best floating point density AND single threaded performance I've seen
together on a desktop CPU, which is one of the reasons it has dominated that space.
The Summit supercomputer uses GPUs for it's compute density (much higher than CPUs). The NVLINK alternative to PCIE on the Power9's makes Power9 a better choice for many GPU workloads, which is one of the key reasons it was chosen for the Summit CPUs. Power CPUs are pretty meh for CPU performance - they're expensive, have relatively poor FPU performance, and although in terms of IPC, they can be faster than the Intel CPUs, they typically require 4 threads/core to get there.
Trying to cripple GPU computing by not widening the slow PCIE alternative is probably the biggest reason x86 is starting to drop out of supercomputing. The MIC isn't a great alternative to GPUs yet.
IIRC, China's latest supercomputer is a custom RISC core with a ton of compute density on it. Almost like a GPU with a CPU on it - this makes it fast for very parallel code, but running branchy code would be a disaster.
It's also probably worth mentioning that the "CISC" computers these days (basically x86), typically convert to a RISC like microcode at the front-end for internal processing, and much of the newer instruction set extensions are RISC like. Also, "RISC" computers often now have a ton of instructions too, so the lines are getting blurring somewhat.