[1/2] Implement multiprocessing-based parallel plotting

This commit is contained in:
2026-02-09 15:13:18 +08:00
parent afd4006da2
commit 4777cad4ed
5 changed files with 47 additions and 7 deletions

View File

@@ -8,6 +8,8 @@
#################################################
import numpy ## numpy for array operations
import matplotlib
matplotlib.use('Agg') ## use non-interactive backend for multiprocessing safety
import matplotlib.pyplot as plt ## matplotlib for plotting
from mpl_toolkits.mplot3d import Axes3D ## needed for 3D plots
import glob