Skip to content

Commit 956af39

Browse files
authored
Update Copyright (#129)
1 parent daf2815 commit 956af39

18 files changed

+23
-23
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2019, Intel Corporation
1+
Copyright (c) 2017-2025, Intel Corporation
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ It implements the following functions:
7171

7272
`rfft2_numpy(x, s=None, axes=(-2,-1))` - real 2D Fourier transform, like `numpy.fft.rfft2`
7373

74-
`rfftn_numpy(x, s=None, axes=None)` - real 2D Fourier transform, like `numpy.fft.rfftn`
74+
`rfftn_numpy(x, s=None, axes=None)` - real ND Fourier transform, like `numpy.fft.rfftn`
7575

7676
... and similar `irfft*` functions.
7777

mkl_fft/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/_float_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/_numpy_fft.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:
@@ -207,7 +207,7 @@ def fft(a, n=None, axis=-1, norm=None):
207207
else:
208208
output = trycall(
209209
mkl_fft.fft,
210-
(x, ),
210+
(x,),
211211
{'n': n, 'axis': axis,
212212
'forward_scale': ortho_sc_1d(n, x.shape[axis])})
213213
return output
@@ -306,7 +306,7 @@ def ifft(a, n=None, axis=-1, norm=None):
306306
mkl_fft.ifft, (x,), {'n': n, 'axis':axis})
307307
elif norm == "forward":
308308
output = trycall(
309-
mkl_fft.ifft, (x, ),
309+
mkl_fft.ifft, (x,),
310310
{'n': n, 'axis': axis,
311311
'forward_scale': frwd_sc_1d(n, x.shape[axis])})
312312
else:
@@ -614,17 +614,17 @@ def hfft(a, n=None, axis=-1, norm=None):
614614
if (norm in (None, "backward")):
615615
res = trycall(
616616
irfft,
617-
(x, ),
617+
(x,),
618618
{'n': n, 'axis': axis, 'norm': 'forward'})
619619
elif norm == "forward":
620620
res = trycall(
621621
irfft,
622-
(x, ),
622+
(x,),
623623
{'n': n, 'axis': axis, 'norm': 'backward'})
624624
else:
625625
res = trycall(
626626
irfft,
627-
(x, ),
627+
(x,),
628628
{'n': n, 'axis': axis, 'norm': 'ortho'})
629629
return res
630630

mkl_fft/_pydfti.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/_scipy_fft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/_scipy_fft_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2019-2024, Intel Corporation
2+
# Copyright (c) 2019-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/interfaces/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017-2024, Intel Corporation
1+
# Copyright (c) 2017-2025, Intel Corporation
22
#
33
# Redistribution and use in source and binary forms, with or without
44
# modification, are permitted provided that the following conditions are met:

mkl_fft/interfaces/numpy_fft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/interfaces/scipy_fft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/src/mklfft.c.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2017-2024, Intel Corporation
2+
Copyright (c) 2017-2025, Intel Corporation
33

44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions are met:

mkl_fft/src/mklfft.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2017-2024, Intel Corporation
2+
Copyright (c) 2017-2025, Intel Corporation
33
44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions are met:

mkl_fft/src/multi_iter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2017-2024, Intel Corporation
2+
Copyright (c) 2017-2025, Intel Corporation
33
44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions are met:

mkl_fft/tests/test_fft1d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2023, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/tests/test_fftnd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2023, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

mkl_fft/tests/test_interfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2023, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2017-2024, Intel Corporation
2+
# Copyright (c) 2017-2025, Intel Corporation
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)