When I try to build this:
\usepackage{array}
\documentclass{beamer}
\begin{document}
\begin{frame}{Bibliotheken}
\setlength\extrarowheight{5pt}
\begin{tabular}{|l|l|l|l|l|l|}
\hline
\textbf{Bibliothek} & \textbf{Sprache} & \textbf{max. Rang} & \textbf{SIMD} & \textbf{Multithreading} & \textbf{Besonderheiten}\\\hline
\textit{Fastor} & C++ & n & \checkmark & $\times$ & Overheadreduktion durch fehlende BLAS-Calls \\\hline\pause
\textit{Blitz}++ & C++ & 11 & $\times$ & $\times$ & \\\hline\pause
\textit{Eigen} & C++ & 250 & \checkmark & \checkmark & \\\hline\pause
\textit{XTensor} & C++ & n & \checkmark & \checkmark & effiziente BLAS-Calls \\\hline\pause
\textit{Taco} & C++ & n & $\times$ & $\times$ & Runtime Code-Generieung und Compilierung \\\hline\pause
\textit{NumPy} & Python & n & \checkmark & \checkmark & effiziente BLAS-Calls \\\hline\pause
\textit{Tensorflow} & Python & 250 & \checkmark & \checkmark & Operator-Baum-generierung und Optimierung \\
\hline
\end{tabular}
\end{frame}
\end{beamer}
I get this fail:
How can I fix this? The best solution would be one where I have to change as little as possible...

