Revision 4a5fbb54a22c490d8519d99211de4101cf3c3c8e authored by John Bradshaw on 07 August 2017, 16:31:20 UTC, committed by John Bradshaw on 07 August 2017, 16:31:20 UTC
2 parent s 3351998 + dc4b56b
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