MCPcopy Create free account
hub / github.com/apache/tvm / FenceNamespace

Class FenceNamespace

python/tvm/backend/cuda/script.py:387–397  ·  view source on GitHub ↗

PTX fence instruction submodule.

Source from the content-addressed store, hash-verified

385
386
387class FenceNamespace:
388 """PTX fence instruction submodule."""
389
390 def __init__(self):
391 self.proxy_async = _op_wrapper(_cuda_op.ptx_fence_proxy_async)
392 self.mbarrier_init = _op_wrapper(_cuda_op.ptx_fence_mbarrier_init)
393
394 def __call__(self, *args, **kwds):
395 return _op_wrapper(_cuda_op.ptx_fence)(*args, **kwds)
396
397 __tir_call_op_name__ = "ptx_fence"
398
399
400class GriddepcontrolNamespace:

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…