tensorplay._stax
tensorplay._stax is TensorPlay’s private compilation package. It owns
capture orchestration, specialization guards, backend registration, code
caching, and the native Stax and TVM lowering implementations.
Graph values and graph transformations are intentionally separate:
tensorplay.graphcontainsGraph,Node,GraphModule,Proxy, andTracer.tensorplay.graph.passescontains graph transformations and pass composition utilities.tensorplay._staxconsumes those graph objects and produces executable callables.
The supported public entry point is tensorplay.compile. The _stax
namespace is private and is exposed only for backend registration and
diagnostic tooling.
Private services
CodeCache— compiled artifact cachingGuardandGuardChain— specialization validationCudaGraphManager— CUDA graph capture and replayAOTErrorandbuild_aot— ahead-of-time compilation helpers

