#!/usr/bin/env python # coding: utf-8 # In[2]: import util import os from IPython.core.display import Markdown benchmark = 'depletion' # In[3]: Markdown(open(os.path.join(benchmark, 'README.md'), 'r').read()) # ## Performance data # # Performance results are reported in hours to complete ten million Monte Carlo sweeps, where one sweep is N trial moves. # In[4]: rows = util.read_rows(benchmark) table = util.make_table(rows) Markdown(table) # In[5]: 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[ ]: