#!/usr/bin/env python # coding: utf-8 # In[1]: import util import os from IPython.core.display import Markdown benchmark = 'quasicrystal' # In[2]: Markdown(open(os.path.join(benchmark, 'README.md'), 'r').read()) # ## Performance data # # Performance results are reported in hours to complete ten million time steps. # In[3]: rows = util.read_rows(benchmark) table = util.make_table(rows) Markdown(table) # In[4]: from IPython.display import HTML #Hide code blocks HTML(''' The raw code for this IPython notebook is by default hidden for easier reading.To toggle on/off the raw code, click here.''') # In[ ]: