I found this thread:
How to make pdfLaTeX multithreaded when `--shell-escape` is enabled?
It works great. But when I change to LuaLaTeX there is still just 1 cpu active.
So is there a way to achive this with LuaLaTeX aswell?
I found this thread:
How to make pdfLaTeX multithreaded when `--shell-escape` is enabled?
It works great. But when I change to LuaLaTeX there is still just 1 cpu active.
So is there a way to achive this with LuaLaTeX aswell?
Oh sorry guys, I found out, that I looked wrong and everything works fine.
I was looking for multithreading while make.
This works for me with
make -j 4 -f mwe.makefile
Here is the file:
\listfiles
\documentclass{scrbook}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usetikzlibrary{external}
\tikzexternalize[mode=list and make]
\begin{document}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\input{plot.tex}
\end{document}
The plot.tex is just a pgfplots plot with a lot of points.
\begin{tikzpicture}
\begin{axis}
\addplot
table[row sep=crcr]{%
0.00158079699940572 0\\
142.183864004999 0\\
...
160.419964085 2523.5\\
160.420948376999 2526.5\\
};
\end{axis}
\end{tikzpicture}%
tikzpictureenvironments, which is possible, as is described in the answer to the linked question. – Stefan Pinnow Jan 08 '19 at 21:39