drbh commited on
Commit ·
c019643
1
Parent(s): 6c273f0
feat: add built kernels
Browse files- build/torch24-cxx11-cu118-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch24-cxx11-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch24-cxx11-cu118-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch24-cxx11-cu121-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch24-cxx11-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch24-cxx11-cu121-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch24-cxx11-cu124-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch24-cxx11-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch24-cxx11-cu124-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch24-cxx98-cu118-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch24-cxx98-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch24-cxx98-cu118-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch24-cxx98-cu121-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch24-cxx98-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch24-cxx98-cu121-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch24-cxx98-cu124-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch24-cxx98-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch24-cxx98-cu124-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch25-cxx11-cu118-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch25-cxx11-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch25-cxx11-cu118-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch25-cxx11-cu121-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch25-cxx11-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch25-cxx11-cu121-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch25-cxx11-cu124-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch25-cxx11-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch25-cxx11-cu124-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch25-cxx98-cu118-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch25-cxx98-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch25-cxx98-cu118-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch25-cxx98-cu121-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch25-cxx98-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch25-cxx98-cu121-x86_64-linux/mel_spectrogram/_ops.py +3 -0
- build/torch25-cxx98-cu124-x86_64-linux/mel_spectrogram/__init__.py +15 -0
- build/torch25-cxx98-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so +0 -0
- build/torch25-cxx98-cu124-x86_64-linux/mel_spectrogram/_ops.py +3 -0
build/torch24-cxx11-cu118-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch24-cxx11-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (56.8 kB). View file
|
|
|
build/torch24-cxx11-cu118-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch24-cxx11-cu121-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch24-cxx11-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (52.3 kB). View file
|
|
|
build/torch24-cxx11-cu121-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch24-cxx11-cu124-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch24-cxx11-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (52.1 kB). View file
|
|
|
build/torch24-cxx11-cu124-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch24-cxx98-cu118-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch24-cxx98-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (57.1 kB). View file
|
|
|
build/torch24-cxx98-cu118-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch24-cxx98-cu121-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch24-cxx98-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (56.6 kB). View file
|
|
|
build/torch24-cxx98-cu121-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch24-cxx98-cu124-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch24-cxx98-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (52.2 kB). View file
|
|
|
build/torch24-cxx98-cu124-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch25-cxx11-cu118-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch25-cxx11-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (56.8 kB). View file
|
|
|
build/torch25-cxx11-cu118-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch25-cxx11-cu121-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch25-cxx11-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (52.3 kB). View file
|
|
|
build/torch25-cxx11-cu121-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch25-cxx11-cu124-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch25-cxx11-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (52.1 kB). View file
|
|
|
build/torch25-cxx11-cu124-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch25-cxx98-cu118-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch25-cxx98-cu118-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (57.1 kB). View file
|
|
|
build/torch25-cxx98-cu118-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch25-cxx98-cu121-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch25-cxx98-cu121-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (56.6 kB). View file
|
|
|
build/torch25-cxx98-cu121-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|
build/torch25-cxx98-cu124-x86_64-linux/mel_spectrogram/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
|
| 3 |
+
try:
|
| 4 |
+
from ._ops import ops
|
| 5 |
+
except ImportError as e:
|
| 6 |
+
# Fallback for local development.
|
| 7 |
+
try:
|
| 8 |
+
import _mel_spectrogram
|
| 9 |
+
ops = torch.ops._mel_spectrogram
|
| 10 |
+
except ImportError:
|
| 11 |
+
raise e
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def mel_spectrogram(out: torch.Tensor, samples: torch.Tensor, filters: torch.Tensor, fft_size: int, fft_step: int) -> torch.Tensor:
|
| 15 |
+
return ops.mel_spectrogram(out, samples, filters, fft_size, fft_step)
|
build/torch25-cxx98-cu124-x86_64-linux/mel_spectrogram/_mel_spectrogram_0_0_1.abi3.so
ADDED
|
Binary file (52.2 kB). View file
|
|
|
build/torch25-cxx98-cu124-x86_64-linux/mel_spectrogram/_ops.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from . import _mel_spectrogram_0_0_1
|
| 3 |
+
ops = torch.ops._mel_spectrogram_0_0_1
|