Skip to content

Commit

Permalink
removed torchaudio
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00b1 committed Oct 3, 2024
1 parent bde1b44 commit 1d6dc81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/beignet/_chebyshev_polynomial_power.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import torch
from torch import Tensor
from torchaudio.functional import convolve
from ._convolve import convolve

from ._add_chebyshev_polynomial import add_chebyshev_polynomial

Expand Down
2 changes: 1 addition & 1 deletion src/beignet/_multiply_chebyshev_polynomial.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import torch
from torch import Tensor
from torchaudio.functional import convolve
from ._convolve import convolve


def multiply_chebyshev_polynomial(
Expand Down
2 changes: 1 addition & 1 deletion src/beignet/_multiply_polynomial.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import torch
from torch import Tensor
from torchaudio.functional import convolve
from ._convolve import convolve


def multiply_polynomial(
Expand Down

0 comments on commit 1d6dc81

Please sign in to comment.