22 lines
573 B
Python
22 lines
573 B
Python
|
|
import matplotlib.gridspec as gridspec
|
|
|
|
from plotstyle import plot_style
|
|
from threefish.defaults import default_figsize
|
|
from threefish.load import save_visualization
|
|
from threefish.RAM.plots import flowchart_core
|
|
|
|
|
|
def flowchart():
|
|
plot_style()
|
|
default_figsize(column=2, length=4.7)
|
|
grid_orig = gridspec.GridSpec(1, 1, wspace=0.15, bottom=0.07,
|
|
hspace=0.1, left=0.05, right=0.96,
|
|
top=0.9)
|
|
flowchart_core(grid_orig[0])
|
|
|
|
save_visualization()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
flowchart() |