(func)
| 28 | # about conflicts between cython and torch.compile |
| 29 | # --------------------------------------------------------------- # |
| 30 | def simple_wrapper(func): |
| 31 | def inner(*args, **kwargs): |
| 32 | return func(*args, **kwargs) |
| 33 | return inner |
| 34 | |
| 35 | # --------------------------------------------------------------- # |
| 36 | # VAE Parallel Kernel |