Warning
This page was created from a pull request.
jax.profiler.TraceContext¶
-
class
jax.profiler.
TraceContext
[source]¶ Context manager generates a trace event in the profiler.
The trace event spans the duration of the code enclosed by the context.
For example:
>>> import jax, jax.numpy as jnp >>> x = jnp.ones((1000, 1000)) >>> with jax.profiler.TraceContext("acontext"): ... jnp.dot(x, x.T).block_until_ready()
This will cause an “acontext” event to show up on the trace timeline if the event occurs while the process is being traced by TensorBoard.
-
__init__
(self: jaxlib.xla_extension.profiler.TraceMe, arg0: str, **kwargs) → None¶
Methods
__init__
(self, arg0, **kwargs)is_enabled
()set_metadata
(self, **kwargs)-