Revision b84c44eb9c7a76efd6d1f11f3be901227abb5bdb authored by Alexander G. de G. Matthews on 04 January 2018, 11:02:09 UTC, committed by GitHub on 04 January 2018, 11:02:09 UTC
2 parent s 72a5d55 + 4827068
Raw File
example_profiler.py
import gpflow
import simple_regression

gpflow.profiler.activateTracer('timeline_last')
simple_regression.runExperiments(sampling=False)
gpflow.profiler.deactivateTracer()

gpflow.profiler.activateTracer('timeline',outputDirectory='profiler_output',eachTime=True)
simple_regression.runExperiments(sampling=False)
gpflow.profiler.deactivateTracer()
back to top