From bfa6a6c7c6c324b8fd6c1002007f51059d77ebd8 Mon Sep 17 00:00:00 2001 From: Jaya Venkatesh Date: Mon, 8 Sep 2025 16:00:19 -0700 Subject: [PATCH] remove pynvjitlink references in examples Signed-off-by: Jaya Venkatesh --- python/examples/cccl_cooperative_block_reduce.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/examples/cccl_cooperative_block_reduce.py b/python/examples/cccl_cooperative_block_reduce.py index ea5bcf0..0d5d970 100644 --- a/python/examples/cccl_cooperative_block_reduce.py +++ b/python/examples/cccl_cooperative_block_reduce.py @@ -21,7 +21,6 @@ import cuda.cccl.cooperative.experimental as coop import numba import numpy as np from numba import cuda -from pynvjitlink import patch class BitsetRing: @@ -90,8 +89,6 @@ def multi_block_bench(state: bench.State): if __name__ == "__main__": - patch.patch_numba_linker(lto=True) - b = bench.register(multi_block_bench) b.add_int64_axis("ThreadsPerBlock", [64, 128, 192, 256]) b.add_int64_power_of_two_axis("NumBlocks", [10, 11, 12, 14, 16])