Revision 1342c286e4c704b0e718e15a6e1d4c194ce0c076 authored by Alexander G. de G. Matthews on 04 January 2018, 11:15:29 UTC, committed by GitHub on 04 January 2018, 11:15:29 UTC
Missing part in transform - backward_tensor
2 parent s 4827068 + b84c44e
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