From 15b4b23ec85d7df587a48ffbcfdccead61ea4819 Mon Sep 17 00:00:00 2001 From: Jinjie Liu Date: Wed, 28 Jan 2026 02:22:52 +0800 Subject: [PATCH] mark unused methds Signed-off-by: Jinjie Liu --- python/triton_tvm_ffi/driver.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python/triton_tvm_ffi/driver.py b/python/triton_tvm_ffi/driver.py index 2c49b66..d9c035d 100644 --- a/python/triton_tvm_ffi/driver.py +++ b/python/triton_tvm_ffi/driver.py @@ -24,10 +24,14 @@ class TVMFFIUtils(object): return get_device_properties(device_id) def cuOccupancyMaxActiveClusters(self, *args, **kwargs): - return self._utils.cuOccupancyMaxActiveClusters(*args, **kwargs) + raise NotImplementedError( + '"cuOccupancyMaxActiveClusters isn\'t expected to be invoked"' + ) def set_printf_fifo_size(self, *args, **kwargs): - return self._utils.set_printf_fifo_size(*args, **kwargs) + raise NotImplementedError( + '"set_printf_fifo_size" isn\'t expected to be invoked' + ) def fill_tma_descriptor(self, *args, **kwargs): return self._utils.fill_tma_descriptor(*args, **kwargs)