[FRONTEND] add do_not_specialize property back to JITFunction (#2573)

This commit is contained in:
Zahi Moudallal
2023-10-31 12:02:45 -07:00
committed by GitHub
parent 0cf3a67f04
commit 943330790a

View File

@@ -572,6 +572,7 @@ class JITFunction(KernelInterface[T]):
self.module = fn.__module__
self.version = version
self.signature = inspect.signature(fn)
self.do_not_specialize = do_not_specialize
self.params = []
for i, param in enumerate(self.signature.parameters.values()):