Modern security exploits and application crashes due to state corruption have proven that while threads were an enticing idea, they aren't something that we should keep around if we care about security and application stability.
This applies to all programming languages, not only OCaml, hence why everyone is moving away into other concurrency models anyway.
You have two matrices, with allocated memory A and B, that you want to multiply and store to allocated memory C, as efficiently as possible using 8 cores. How do you do this without threads exactly?
I wanted an efficient no threads solution to a very common problem of matrix multiplication using multiprocessor CPUs. You gave me nonsense answers like vector operations (uses only one CPU at a time) and GPUs (memory transfer bottleneck, need to copy arrays, significantly less RAM compared to CPU RAM, and GPUs make it a completely different game). So no, I'm not moving goalposts.
And will spend more time shuffling data through their horribly bottle-necked memory interfaces than the CPU would take handling the matrix operation, especially if the GPU is already used for graphics.
Multi-core systems and tools that can use them are valuable and very much reality right now.
For example: embedded applications, or when I'm the only one running trusted code on my computer. Think also of scientific computing.
If you insist on networked solutions: database servers.
Also: "multicore + purely functional style" is just as clean as "multiprocess + purely functional style", but ... the latter is less efficient because of communication overhead.
Unless you manage to do any kind of work without IO, there is always a security risk.
And if that is irrelevant to you, there is still the application stability and memory consistency to ensure data is being handled in a memory consistent state.
Fortran is a good example on how to do scientific computing without low level threads.
Yes threads should be used with extreme caution, that's why I advocate using a functional programming style. But you still want the performance of multicore. It's not one or the other (but with OCaml it unfortunately is).