Skip to content

Commit 0e1927d

Browse files
committed
Added copyright info in the files where it was missing
1 parent 55cb3bf commit 0e1927d

File tree

8 files changed

+31
-0
lines changed

8 files changed

+31
-0
lines changed

Deeploy/Targets/Generic/Templates/BatchNormalizationTemplate.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
from Deeploy.DeeployTypes import NodeTemplate
26

37
referenceTemplate = NodeTemplate("""

Deeploy/Targets/Generic/Templates/ConvTransposeTemplate.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
from typing import Dict, List, Tuple
26

37
from Deeploy.DeeployTypes import NetworkContext, NodeTemplate, OperatorRepresentation

TargetLibraries/Generic/inc/kernel/BatchNorm.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
#ifndef BATCHNORM_H
26
#define BATCHNORM_H
37

TargetLibraries/Generic/inc/kernel/ConvTranspose1d_fp32.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
#ifndef CONV_TRANSPOSE1D_FP32_H
26
#define CONV_TRANSPOSE1D_FP32_H
37

TargetLibraries/Generic/inc/kernel/MaxPool1d.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
#ifndef __DEEPLOY_BASIC_MATH_MAXPOOL1D_KERNEL_HEADER_
26
#define __DEEPLOY_BASIC_MATH_MAXPOOL1D_KERNEL_HEADER_
37

TargetLibraries/Generic/src/BatchNorm_fp32.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
#include "DeeployBasicMath.h"
26

37
void BatchNorm_fp32(const float32_t *input, const float32_t *gamma,

TargetLibraries/Generic/src/ConvTranspose1d_fp32.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
14

25
#include "DeeployBasicMath.h"
36

TargetLibraries/Generic/src/MaxPool1D_fp32.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
15
#include "DeeployBasicMath.h"
26
#include <math.h>
37

0 commit comments

Comments
 (0)