Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyolicoris committed Apr 18, 2024
1 parent 1218b64 commit e7de8e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions torchlpc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
from numba import jit, njit, prange, cuda, float32, float64, complex64, complex128


lpc_cuda_kernel_float32: Callable
lpc_cuda_kernel_float64: Callable
lpc_cuda_kernel_complex64: Callable
lpc_cuda_kernel_complex128: Callable
lpc_cuda_kernel_float32: Callable = None
lpc_cuda_kernel_float64: Callable = None
lpc_cuda_kernel_complex64: Callable = None
lpc_cuda_kernel_complex128: Callable = None


for t in ["float32", "float64", "complex64", "complex128"]:
Expand Down

0 comments on commit e7de8e8

Please sign in to comment.