Skip to content

Commit

Permalink
Update ein_fft.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kyegomez authored Mar 26, 2024
1 parent c638864 commit 4bb33eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions simba_torch/ein_fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ def forward(self, x: Tensor) -> Tensor:


# Random input tensor
x = torch.randn(1, 3, 64)
# x = torch.randn(1, 3, 64)

# Instantiate EinFFT module
einfft = EinFFTText(3, 64)
# # Instantiate EinFFT module
# einfft = EinFFTText(3, 64)

# Apply EinFFT to get an output
output = einfft(x)
print(output.shape)
# # Apply EinFFT to get an output
# output = einfft(x)
# print(output.shape)

0 comments on commit 4bb33eb

Please sign in to comment.