diff --git a/ComputeGraph/FAQ.md b/ComputeGraph/FAQ.md index bb92c5e8..1fd89b8a 100644 --- a/ComputeGraph/FAQ.md +++ b/ComputeGraph/FAQ.md @@ -29,7 +29,7 @@ For instance, if you need an alignment on a multiple of `16` bytes with a buffer If you can't choose freely the values of `NR` and `NW` then you may need to do a copy inside your component to align the buffer (of course only if the overhead due to the lack of alignment is bigger than doing a copy.) -## Memory sharing +## Memory sharing example When the `memoryOptimization` is enabled, the memory may be reused for different FIFOs to minimize the memory usage. But the scheduling algorithm is not trying to optimize this. So depending on how the graph was scheduled, the level of sharing may be different. diff --git a/ComputeGraph/README.md b/ComputeGraph/README.md index 95d2522b..5651d48e 100644 --- a/ComputeGraph/README.md +++ b/ComputeGraph/README.md @@ -20,9 +20,11 @@ 7. ### Extensions - 1. #### [Cyclo-static scheduling](CycloStatic.md) + 1. #### [Memory optimizations](documentation/Memory.md) - 2. #### [Dynamic / Asynchronous mode](Async.md) + 2. #### [Cyclo-static scheduling](CycloStatic.md) + + 3. #### [Dynamic / Asynchronous mode](Async.md) 8. ### [Maths principles](MATHS.md) diff --git a/ComputeGraph/cg/nodes/cpp/CFFT.h b/ComputeGraph/cg/nodes/cpp/CFFT.h index 4387c420..ccfc173b 100644 --- a/ComputeGraph/cg/nodes/cpp/CFFT.h +++ b/ComputeGraph/cg/nodes/cpp/CFFT.h @@ -3,13 +3,11 @@ * Title: CFFT.h * Description: Node for CMSIS-DSP cfft * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/ICFFT.h b/ComputeGraph/cg/nodes/cpp/ICFFT.h index 9899768a..1349b041 100644 --- a/ComputeGraph/cg/nodes/cpp/ICFFT.h +++ b/ComputeGraph/cg/nodes/cpp/ICFFT.h @@ -3,13 +3,11 @@ * Title: ICFFT.h * Description: Node for CMSIS-DSP icfft * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/InterleavedStereoToMono.h b/ComputeGraph/cg/nodes/cpp/InterleavedStereoToMono.h index 08f52ea3..ab1daa28 100644 --- a/ComputeGraph/cg/nodes/cpp/InterleavedStereoToMono.h +++ b/ComputeGraph/cg/nodes/cpp/InterleavedStereoToMono.h @@ -3,13 +3,11 @@ * Title: InterleavedStereoToMono.h * Description: Interleaved Stereo to mono stream in Q15 * - * $Date: 06 August 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/MFCC.h b/ComputeGraph/cg/nodes/cpp/MFCC.h index a069abe0..c7f4327a 100644 --- a/ComputeGraph/cg/nodes/cpp/MFCC.h +++ b/ComputeGraph/cg/nodes/cpp/MFCC.h @@ -3,13 +3,11 @@ * Title: MFCC.h * Description: Node for CMSIS-DSP MFCC * - * $Date: 06 October 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/NullSink.h b/ComputeGraph/cg/nodes/cpp/NullSink.h index d982a0da..f3669db4 100644 --- a/ComputeGraph/cg/nodes/cpp/NullSink.h +++ b/ComputeGraph/cg/nodes/cpp/NullSink.h @@ -3,13 +3,11 @@ * Title: NullSink.h * Description: Sink doing nothing for debug * - * $Date: 08 August 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/OverlapAndAdd.h b/ComputeGraph/cg/nodes/cpp/OverlapAndAdd.h index ba441f8d..2ab36f35 100644 --- a/ComputeGraph/cg/nodes/cpp/OverlapAndAdd.h +++ b/ComputeGraph/cg/nodes/cpp/OverlapAndAdd.h @@ -3,13 +3,11 @@ * Title: OverlapAndAdd.h * Description: Overlap And Add * - * $Date: 25 October 2022 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2022 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/SlidingBuffer.h b/ComputeGraph/cg/nodes/cpp/SlidingBuffer.h index 971a5832..b782cd52 100644 --- a/ComputeGraph/cg/nodes/cpp/SlidingBuffer.h +++ b/ComputeGraph/cg/nodes/cpp/SlidingBuffer.h @@ -3,13 +3,11 @@ * Title: SlidingBuffer.h * Description: Sliding buffer * - * $Date: 25 October 2022 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2022 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/ToComplex.h b/ComputeGraph/cg/nodes/cpp/ToComplex.h index f91e66bd..e6b26da5 100644 --- a/ComputeGraph/cg/nodes/cpp/ToComplex.h +++ b/ComputeGraph/cg/nodes/cpp/ToComplex.h @@ -3,13 +3,11 @@ * Title: ToComplex.h * Description: Node to convert real to complex * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/ToReal.h b/ComputeGraph/cg/nodes/cpp/ToReal.h index 6d850733..13f8e0ed 100644 --- a/ComputeGraph/cg/nodes/cpp/ToReal.h +++ b/ComputeGraph/cg/nodes/cpp/ToReal.h @@ -3,13 +3,11 @@ * Title: ToReal.h * Description: Node to convert complex to reals * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/Unzip.h b/ComputeGraph/cg/nodes/cpp/Unzip.h index c4d7c860..eeca9826 100644 --- a/ComputeGraph/cg/nodes/cpp/Unzip.h +++ b/ComputeGraph/cg/nodes/cpp/Unzip.h @@ -3,13 +3,11 @@ * Title: Unzip.h * Description: Node to unzip a stream of pair * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/Zip.h b/ComputeGraph/cg/nodes/cpp/Zip.h index e120e870..bae6da48 100644 --- a/ComputeGraph/cg/nodes/cpp/Zip.h +++ b/ComputeGraph/cg/nodes/cpp/Zip.h @@ -3,13 +3,11 @@ * Title: Zip.h * Description: Node to zip a pair of stream * - * $Date: 06 August 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/host/FileSink.h b/ComputeGraph/cg/nodes/cpp/host/FileSink.h index 6835d9d3..4907176d 100644 --- a/ComputeGraph/cg/nodes/cpp/host/FileSink.h +++ b/ComputeGraph/cg/nodes/cpp/host/FileSink.h @@ -3,13 +3,11 @@ * Title: FileSink.h * Description: Node for creating File sinks * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/nodes/cpp/host/FileSource.h b/ComputeGraph/cg/nodes/cpp/host/FileSource.h index eba3fdb6..dd112fd0 100644 --- a/ComputeGraph/cg/nodes/cpp/host/FileSource.h +++ b/ComputeGraph/cg/nodes/cpp/host/FileSource.h @@ -3,13 +3,11 @@ * Title: FileSource.h * Description: Node for creating File sources * - * $Date: 30 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/src/GenericNodes.h b/ComputeGraph/cg/src/GenericNodes.h index 633314d5..166c94b9 100644 --- a/ComputeGraph/cg/src/GenericNodes.h +++ b/ComputeGraph/cg/src/GenericNodes.h @@ -3,13 +3,11 @@ * Title: GenericNodes.h * Description: C++ support templates for the compute graph with static scheduler * - * $Date: 29 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2022 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/cg/src/cg_status.h b/ComputeGraph/cg/src/cg_status.h index 995b117b..dbf271db 100644 --- a/ComputeGraph/cg/src/cg_status.h +++ b/ComputeGraph/cg/src/cg_status.h @@ -1,3 +1,29 @@ +/* ---------------------------------------------------------------------- + * Project: CMSIS DSP Library + * Title: cg_status.h + * Description: Error code for the Compute Graph + * + * + * Target Processor: Cortex-M and Cortex-A cores + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. + * + * SPDX-License-Identifier: Apache-2.0 + * + * 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 + * + * 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. + */ + #ifndef _CG_STATUS_H_ diff --git a/ComputeGraph/documentation/Memory.md b/ComputeGraph/documentation/Memory.md new file mode 100644 index 00000000..af24d8d5 --- /dev/null +++ b/ComputeGraph/documentation/Memory.md @@ -0,0 +1,79 @@ +# Memory optimizations + +## Buffers + +Sometimes, a FIFO is in fact a buffer. In below graph, the source is writing 5 samples and the sink is reading 5 samples. + +![buffer](buffer.png) + +The scheduling will obviously be something like: + +`Source, Sink, Source, Sink ...` + +In this case, the FIFO is used as a simple buffer. The read and the write are always taking place from the start of the buffer. + +The schedule generator will detect FIFOs that are used as buffer and the FIFO implementation will be replaced by buffers : the third argument of the template (`isArray`) is set to one: + +```C++ +FIFO fifo0(buf1); +``` + +## Buffer sharing + +When several FIFOs are used as buffers then it may be possible to share the underlying memory for all of those buffers. This optimization is enabled by setting `memoryOptimization` to `true` in the configuration object: + +```python +conf.memoryOptimization=True +``` + +The optimization depends on how the graph has been scheduled. + +With the following graph there is a possibility for buffer sharing: + +![memory](memory.png) + +Without `memoryOptimization`, the FIFO are consuming 60 bytes (4*5 * 3 FIFOs). With `memoryOptimization`, only 40 bytes are needed. + +You cannot share memory for the input / output of a node since a node needs both to read and write for its execution. This imposes some constraints on the graph. + +The constraints are internally represented by a different graph that represents when buffers are live at the same time : the interference graph. The input / output buffers of a node are live at the same time. Graph coloring is used to identify, from this graph of interferences, when memory for buffers can be shared. + +The interference graph is highly depend on how the compute graph is scheduled : a buffer is live when a write has taken place but no read has yet read the full content. + +For the above compute graph and its computed schedule, the interference graph would be: + +![inter](inter.png) + + + +Adjacent vertices in the graph should use different colors. A coloring of this graph is equivalent to assigning memory areas. Graph coloring of the previous interference graph is giving the following buffer sharing: + +![fifos](fifos.png) + +The dimension of the buffer is the maximum for all the edges using this buffers. + +In the C++ code it is represented as: + +```C++ +#define BUFFERSIZE0 20 +CG_BEFORE_BUFFER +uint8_t buf0[BUFFERSIZE0]={0}; +``` + +`uint8_t` is used (instead of the `float32_t` of this example) because different edges of the graph may use different datatypes. + +It is really important that you use the macro `CG_BEFORE_BUFFER` to align this buffer so that the alignment is coherent with the datatype used on all the FIFOs. + +### Shared buffer sizing + +Let's look at a more complex example to see how the size of the shared buffer is computed: + +![shared_complex](shared_complex.png) + +The source is generating 10 samples instead of 5. The FIFOs are using 80 bytes without buffer sharing. + +With buffer sharing, 60 bytes are used. The buffer sharing is: + +![shared_complex_buffer](shared_complex_buffer.png) + +Buffer 1 is used by first and last edge in the graph. The dimension of this buffer is 40 bytes : big enough to be usable by edge 0 and edge 3 in the graph. \ No newline at end of file diff --git a/ComputeGraph/documentation/buffer.png b/ComputeGraph/documentation/buffer.png new file mode 100644 index 00000000..5760cbf3 Binary files /dev/null and b/ComputeGraph/documentation/buffer.png differ diff --git a/ComputeGraph/documentation/fifos.png b/ComputeGraph/documentation/fifos.png new file mode 100644 index 00000000..aa6fb3d5 Binary files /dev/null and b/ComputeGraph/documentation/fifos.png differ diff --git a/ComputeGraph/documentation/inter.png b/ComputeGraph/documentation/inter.png new file mode 100644 index 00000000..57195ed7 Binary files /dev/null and b/ComputeGraph/documentation/inter.png differ diff --git a/ComputeGraph/documentation/memory.png b/ComputeGraph/documentation/memory.png new file mode 100644 index 00000000..784122d3 Binary files /dev/null and b/ComputeGraph/documentation/memory.png differ diff --git a/ComputeGraph/documentation/shared_complex.png b/ComputeGraph/documentation/shared_complex.png new file mode 100644 index 00000000..f196a11d Binary files /dev/null and b/ComputeGraph/documentation/shared_complex.png differ diff --git a/ComputeGraph/documentation/shared_complex_buffer.png b/ComputeGraph/documentation/shared_complex_buffer.png new file mode 100644 index 00000000..97b48e69 Binary files /dev/null and b/ComputeGraph/documentation/shared_complex_buffer.png differ diff --git a/ComputeGraph/examples/cyclo/AppNodes.h b/ComputeGraph/examples/cyclo/AppNodes.h index a35f43e7..e8ab0ed8 100644 --- a/ComputeGraph/examples/cyclo/AppNodes.h +++ b/ComputeGraph/examples/cyclo/AppNodes.h @@ -1,15 +1,12 @@ /* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: AppNodes.h - * Description: Application nodes for Example 1 - * - * $Date: 29 July 2021 - * $Revision: V1.10.0 + * Description: Application nodes for Example cyclo * * Target Processor: Cortex-M and Cortex-A cores * -------------------------------------------------------------------- */ /* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/example1/AppNodes.h b/ComputeGraph/examples/example1/AppNodes.h index 653d5e82..0d1f1b95 100644 --- a/ComputeGraph/examples/example1/AppNodes.h +++ b/ComputeGraph/examples/example1/AppNodes.h @@ -3,13 +3,10 @@ * Title: AppNodes.h * Description: Application nodes for Example 1 * - * $Date: 29 July 2021 - * $Revision: V1.10.0 - * * Target Processor: Cortex-M and Cortex-A cores * -------------------------------------------------------------------- */ /* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/example10/AppNodes.h b/ComputeGraph/examples/example10/AppNodes.h index aa3111d8..47e21fdc 100644 --- a/ComputeGraph/examples/example10/AppNodes.h +++ b/ComputeGraph/examples/example10/AppNodes.h @@ -1,15 +1,12 @@ /* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: AppNodes.h - * Description: Application nodes for Example 1 - * - * $Date: 29 July 2021 - * $Revision: V1.10.0 + * Description: Application nodes for Example 10 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/example2/AppNodes.h b/ComputeGraph/examples/example2/AppNodes.h index 28f1a430..5481d572 100644 --- a/ComputeGraph/examples/example2/AppNodes.h +++ b/ComputeGraph/examples/example2/AppNodes.h @@ -3,13 +3,11 @@ * Title: AppNodes.h * Description: Application nodes for Example 2 * - * $Date: 29 July 2021 - * $Revision: V1.10.0 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/example3/AppNodes.h b/ComputeGraph/examples/example3/AppNodes.h index 6136701b..7df66010 100644 --- a/ComputeGraph/examples/example3/AppNodes.h +++ b/ComputeGraph/examples/example3/AppNodes.h @@ -3,13 +3,10 @@ * Title: AppNodes.h * Description: Application nodes for Example 3 * - * $Date: 29 July 2021 - * $Revision: V1.10.0 - * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- +* + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/example4/appnodes.py b/ComputeGraph/examples/example4/appnodes.py index 2e2a85fb..7c1d6da8 100644 --- a/ComputeGraph/examples/example4/appnodes.py +++ b/ComputeGraph/examples/example4/appnodes.py @@ -3,13 +3,11 @@ # Title: appnodes.py # Description: Application nodes for Example 4 # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/ComputeGraph/examples/example5/appnodes.py b/ComputeGraph/examples/example5/appnodes.py index c7f7667b..bbc5cc04 100644 --- a/ComputeGraph/examples/example5/appnodes.py +++ b/ComputeGraph/examples/example5/appnodes.py @@ -1,15 +1,12 @@ ########################################### # Project: CMSIS DSP Library # Title: appnodes.py -# Description: Application nodes for Example 4 -# -# $Date: 29 July 2021 -# $Revision: V1.10.0 +# Description: Application nodes for Example 5 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/ComputeGraph/examples/example6/AppNodes.h b/ComputeGraph/examples/example6/AppNodes.h index e7c58343..b989dc14 100644 --- a/ComputeGraph/examples/example6/AppNodes.h +++ b/ComputeGraph/examples/example6/AppNodes.h @@ -3,13 +3,10 @@ * Title: AppNodes.h * Description: Application nodes for Example 6 * - * $Date: 29 July 2021 - * $Revision: V1.10.0 - * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/example7/appnodes.py b/ComputeGraph/examples/example7/appnodes.py index 42fd62ea..f21604c0 100644 --- a/ComputeGraph/examples/example7/appnodes.py +++ b/ComputeGraph/examples/example7/appnodes.py @@ -1,15 +1,12 @@ ########################################### # Project: CMSIS DSP Library # Title: appnodes.py -# Description: Application nodes for Example 4 -# -# $Date: 29 July 2021 -# $Revision: V1.10.0 +# Description: Application nodes for Example 7 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2022 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/ComputeGraph/examples/example8/AppNodes.h b/ComputeGraph/examples/example8/AppNodes.h index d818ba65..f115b36f 100644 --- a/ComputeGraph/examples/example8/AppNodes.h +++ b/ComputeGraph/examples/example8/AppNodes.h @@ -1,14 +1,11 @@ /* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: AppNodes.h - * Description: Application nodes for Example 1 - * - * $Date: 29 July 2021 - * $Revision: V1.10.0 + * Description: Application nodes for Example 8 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* + * -------------------------------------------------------------------- +* * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 diff --git a/ComputeGraph/examples/example8/appnodes.py b/ComputeGraph/examples/example8/appnodes.py index 67125505..992a326e 100644 --- a/ComputeGraph/examples/example8/appnodes.py +++ b/ComputeGraph/examples/example8/appnodes.py @@ -1,15 +1,13 @@ ########################################### # Project: CMSIS DSP Library # Title: appnodes.py -# Description: Application nodes for Example 4 +# Description: Application nodes for Example 8 # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/ComputeGraph/examples/example9/AppNodes.h b/ComputeGraph/examples/example9/AppNodes.h index b90c1a76..50091812 100644 --- a/ComputeGraph/examples/example9/AppNodes.h +++ b/ComputeGraph/examples/example9/AppNodes.h @@ -1,15 +1,12 @@ /* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: AppNodes.h - * Description: Application nodes for Example 1 - * - * $Date: 29 July 2021 - * $Revision: V1.10.0 + * Description: Application nodes for Example 9 * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- +* + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/simple/AppNodes.h b/ComputeGraph/examples/simple/AppNodes.h index f5f65c23..7edc0181 100644 --- a/ComputeGraph/examples/simple/AppNodes.h +++ b/ComputeGraph/examples/simple/AppNodes.h @@ -1,15 +1,12 @@ /* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: AppNodes.h - * Description: Application nodes for Example 1 - * - * $Date: 29 July 2021 - * $Revision: V1.10.0 + * Description: Application nodes for Example simple * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- +* + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/ComputeGraph/examples/simpledsp/AppNodes.h b/ComputeGraph/examples/simpledsp/AppNodes.h index f5f65c23..728310d3 100644 --- a/ComputeGraph/examples/simpledsp/AppNodes.h +++ b/ComputeGraph/examples/simpledsp/AppNodes.h @@ -1,15 +1,12 @@ /* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: AppNodes.h - * Description: Application nodes for Example 1 - * - * $Date: 29 July 2021 - * $Revision: V1.10.0 + * Description: Application nodes for Example simpledsp * * Target Processor: Cortex-M and Cortex-A cores - * -------------------------------------------------------------------- */ -/* - * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. + * -------------------------------------------------------------------- + * + * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * diff --git a/cmsisdsp/cg/nodes/CFFT.py b/cmsisdsp/cg/nodes/CFFT.py index fc710b03..31d94e6b 100644 --- a/cmsisdsp/cg/nodes/CFFT.py +++ b/cmsisdsp/cg/nodes/CFFT.py @@ -3,13 +3,11 @@ # Title: CFFTF.py # Description: Node for CMSIS-DSP cfft # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/Duplicate.py b/cmsisdsp/cg/nodes/Duplicate.py index aa977999..063bd4ef 100644 --- a/cmsisdsp/cg/nodes/Duplicate.py +++ b/cmsisdsp/cg/nodes/Duplicate.py @@ -3,12 +3,11 @@ # Title: Duplicate.py # Description: Duplicate nodes # -# $Date: 08 September 2022 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/ICFFT.py b/cmsisdsp/cg/nodes/ICFFT.py index 575b1b22..95b243bc 100644 --- a/cmsisdsp/cg/nodes/ICFFT.py +++ b/cmsisdsp/cg/nodes/ICFFT.py @@ -3,13 +3,11 @@ # Title: ICFFT.py # Description: Node for CMSIS-DSP icfft f32 # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/InterleavedStereoToMono.py b/cmsisdsp/cg/nodes/InterleavedStereoToMono.py index 10e9d126..14d5f6b6 100644 --- a/cmsisdsp/cg/nodes/InterleavedStereoToMono.py +++ b/cmsisdsp/cg/nodes/InterleavedStereoToMono.py @@ -3,13 +3,11 @@ # Title: InterleavedStereoToMono.py # Description: Interleaved Stereo to mono in Q15 # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/MFCC.py b/cmsisdsp/cg/nodes/MFCC.py index e90f2345..e424835b 100644 --- a/cmsisdsp/cg/nodes/MFCC.py +++ b/cmsisdsp/cg/nodes/MFCC.py @@ -3,13 +3,11 @@ # Title: MFCC.py # Description: Node for CMSIS-DSP MFCC # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/NullSink.py b/cmsisdsp/cg/nodes/NullSink.py index 27133448..d5d23aae 100644 --- a/cmsisdsp/cg/nodes/NullSink.py +++ b/cmsisdsp/cg/nodes/NullSink.py @@ -3,13 +3,11 @@ # Title: NullSink.py # Description: Null sink doing nothing for debug # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/ToComplex.py b/cmsisdsp/cg/nodes/ToComplex.py index d8d696e1..b4b9e68a 100644 --- a/cmsisdsp/cg/nodes/ToComplex.py +++ b/cmsisdsp/cg/nodes/ToComplex.py @@ -3,13 +3,11 @@ # Title: ToComplex.py # Description: Node to convert real to complex # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/ToReal.py b/cmsisdsp/cg/nodes/ToReal.py index 9a65ac61..a83adc70 100644 --- a/cmsisdsp/cg/nodes/ToReal.py +++ b/cmsisdsp/cg/nodes/ToReal.py @@ -3,13 +3,11 @@ # Title: ToReal.py # Description: Node to convert complex to real # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/Unzip.py b/cmsisdsp/cg/nodes/Unzip.py index f3f98395..062e8003 100644 --- a/cmsisdsp/cg/nodes/Unzip.py +++ b/cmsisdsp/cg/nodes/Unzip.py @@ -3,13 +3,11 @@ # Title: Unzip.py # Description: Unzip streams # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/Zip.py b/cmsisdsp/cg/nodes/Zip.py index dedfa023..40e620e6 100644 --- a/cmsisdsp/cg/nodes/Zip.py +++ b/cmsisdsp/cg/nodes/Zip.py @@ -3,13 +3,11 @@ # Title: Zip.py # Description: Zip two streams # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/__init__.py b/cmsisdsp/cg/nodes/__init__.py index a6459239..60cbc121 100644 --- a/cmsisdsp/cg/nodes/__init__.py +++ b/cmsisdsp/cg/nodes/__init__.py @@ -3,13 +3,11 @@ # Title: __init__.py # Description: CG default nodes # -# $Date: 30 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/host/FileSink.py b/cmsisdsp/cg/nodes/host/FileSink.py index 612fd282..45477eeb 100644 --- a/cmsisdsp/cg/nodes/host/FileSink.py +++ b/cmsisdsp/cg/nodes/host/FileSink.py @@ -3,13 +3,11 @@ # Title: FileSink.py # Description: Node for creating file sinks # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/host/FileSource.py b/cmsisdsp/cg/nodes/host/FileSource.py index 348684e3..0a1288d0 100644 --- a/cmsisdsp/cg/nodes/host/FileSource.py +++ b/cmsisdsp/cg/nodes/host/FileSource.py @@ -3,13 +3,11 @@ # Title: FileSource.py # Description: Node for creating file source # -# $Date: 30 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/host/NumpySink.py b/cmsisdsp/cg/nodes/host/NumpySink.py index c69eacde..e8f1408b 100644 --- a/cmsisdsp/cg/nodes/host/NumpySink.py +++ b/cmsisdsp/cg/nodes/host/NumpySink.py @@ -3,13 +3,11 @@ # Title: NumpySink.py # Description: Sink node for displaying a buffer in scipy # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/host/WavSink.py b/cmsisdsp/cg/nodes/host/WavSink.py index 2ba6519c..f0a6df93 100644 --- a/cmsisdsp/cg/nodes/host/WavSink.py +++ b/cmsisdsp/cg/nodes/host/WavSink.py @@ -3,13 +3,11 @@ # Title: WavSink.py # Description: Sink node for creating a wav # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/host/WavSource.py b/cmsisdsp/cg/nodes/host/WavSource.py index 271bdf3d..70dbe548 100644 --- a/cmsisdsp/cg/nodes/host/WavSource.py +++ b/cmsisdsp/cg/nodes/host/WavSource.py @@ -3,13 +3,11 @@ # Title: WavSource.py # Description: Source node for reading wave files # -# $Date: 06 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/host/message.py b/cmsisdsp/cg/nodes/host/message.py index f7c77704..317cdc84 100644 --- a/cmsisdsp/cg/nodes/host/message.py +++ b/cmsisdsp/cg/nodes/host/message.py @@ -1,5 +1,5 @@ # -------------------------------------------------------------------------- -# Copyright (c) 2020-2022 Arm Limited (or its affiliates). All rights reserved. +# Copyright (c) 2021-2023 Arm Limited (or its affiliates). All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/nodes/simu.py b/cmsisdsp/cg/nodes/simu.py index 5afef587..5b91fd7a 100644 --- a/cmsisdsp/cg/nodes/simu.py +++ b/cmsisdsp/cg/nodes/simu.py @@ -3,13 +3,11 @@ # Title: simu.py # Description: Support Python classes for the Python static scheduler # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/scheduler/config.py b/cmsisdsp/cg/scheduler/config.py index 04558a02..41bd2eef 100644 --- a/cmsisdsp/cg/scheduler/config.py +++ b/cmsisdsp/cg/scheduler/config.py @@ -3,13 +3,11 @@ # Title: config.py # Description: Configuration of the code generator # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/scheduler/description.py b/cmsisdsp/cg/scheduler/description.py index 24cd3a25..90f71fd7 100644 --- a/cmsisdsp/cg/scheduler/description.py +++ b/cmsisdsp/cg/scheduler/description.py @@ -3,13 +3,11 @@ # Title: description.py # Description: Schedule generation # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2023 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/scheduler/graphviz.py b/cmsisdsp/cg/scheduler/graphviz.py index 242b47f3..f4a268d3 100644 --- a/cmsisdsp/cg/scheduler/graphviz.py +++ b/cmsisdsp/cg/scheduler/graphviz.py @@ -3,13 +3,11 @@ # Title: graphviz.py # Description: Graphviz generation for the CG Static scheduler # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/scheduler/node.py b/cmsisdsp/cg/scheduler/node.py index 117a08e0..0889f779 100644 --- a/cmsisdsp/cg/scheduler/node.py +++ b/cmsisdsp/cg/scheduler/node.py @@ -3,13 +3,11 @@ # Title: node.py # Description: Node class for description of dataflow graph # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/scheduler/pythoncode.py b/cmsisdsp/cg/scheduler/pythoncode.py index 9d0dddb0..544b1122 100644 --- a/cmsisdsp/cg/scheduler/pythoncode.py +++ b/cmsisdsp/cg/scheduler/pythoncode.py @@ -3,13 +3,11 @@ # Title: pythoncode.py # Description: Generation of Python code for the static scheduler # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/scheduler/standard.py b/cmsisdsp/cg/scheduler/standard.py index 844800c6..20556ae1 100644 --- a/cmsisdsp/cg/scheduler/standard.py +++ b/cmsisdsp/cg/scheduler/standard.py @@ -3,13 +3,11 @@ # Title: standard.py # Description: Standard nodes to describe a network # -# $Date: 02 August 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 # diff --git a/cmsisdsp/cg/types.py b/cmsisdsp/cg/types.py index d18fe052..a5041639 100644 --- a/cmsisdsp/cg/types.py +++ b/cmsisdsp/cg/types.py @@ -3,13 +3,11 @@ # Title: types.py # Description: Description of the basic CMSIS-DSP types # -# $Date: 29 July 2021 -# $Revision: V1.10.0 # # Target Processor: Cortex-M and Cortex-A cores # -------------------------------------------------------------------- */ # -# Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. +# Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 #