Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] Add fft module #74

Merged
merged 5 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion brainunit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from . import math
from . import linalg
from . import autograd
from . import fft
from ._base import *
from ._base import __all__ as _base_all
from ._celsius import *
Expand All @@ -31,5 +32,5 @@
from ._unit_shortcuts import *
from ._unit_shortcuts import __all__ as _std_units_all

__all__ = ['math', 'linalg', 'autograd'] + _common_all + _std_units_all + _constants_all + _base_all + _celsius_all
__all__ = ['math', 'linalg', 'autograd', 'fft'] + _common_all + _std_units_all + _constants_all + _base_all + _celsius_all
del _common_all, _std_units_all, _constants_all, _base_all, _celsius_all, _matplotlib_compat
3 changes: 3 additions & 0 deletions brainunit/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1506,6 +1506,9 @@ def __deepcopy__(self, memodict):
is_fullname=self.is_fullname,
)

def __hash__(self):
return hash((self.dim, self.base, self.scale, self.name, self.dispname, self.iscompound, self.is_fullname))

def has_same_scale(self, other: 'Unit') -> bool:
"""
Whether this Unit has the same ``scale`` as another Unit.
Expand Down
25 changes: 25 additions & 0 deletions brainunit/fft/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2024 BDP Ecosystem Limited. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================

from ._fft_change_unit import *
from ._fft_change_unit import __all__ as _fft_change_unit_all
from ._fft_keep_unit import *
from ._fft_keep_unit import __all__ as _fft_keep_unit_all

__all__ = (_fft_change_unit_all +
_fft_keep_unit_all)

del (_fft_change_unit_all,
_fft_keep_unit_all,)
Loading
Loading