From: Luke Kenneth Casson Leighton Date: Fri, 2 Jul 2021 15:13:53 +0000 (+0100) Subject: add copyright notice to remapfft.py X-Git-Tag: DRAFT_SVP64_0_1~668 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b14f646b70c16325204356209ca0c4692ca164d6;p=libreriscv.git add copyright notice to remapfft.py --- diff --git a/openpower/sv/remapfft.py b/openpower/sv/remapfft.py index 458c839c2..b79132ca1 100644 --- a/openpower/sv/remapfft.py +++ b/openpower/sv/remapfft.py @@ -1,8 +1,11 @@ -# FFT and convolution test (Python) +# FFT and convolution test (Python), "generators" version # # Copyright (c) 2020 Project Nayuki. (MIT License) # https://www.nayuki.io/page/free-small-fft-in-multiple-languages # +# Copyright (C) 2021 Luke Kenneth Casson Leighton +# https://libre-soc.org/openpower/sv/remap/ +# # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights @@ -160,7 +163,10 @@ def convolve(xvec, yvec, realoutput=True): else: return [(val / n) for val in xvec] + +################################### # ---- Main and test functions ---- +################################### def main(): global _maxlogerr