From 86b883ace1fcbe8d6fb1db4b3d39896a99dbd4d2 Mon Sep 17 00:00:00 2001 From: auphelia Date: Tue, 2 Jan 2024 15:23:58 +0000 Subject: [PATCH] [Tests] Fix copyright header in test case --- .../streamline/test_move_scalar_past_convtranspose.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/transformation/streamline/test_move_scalar_past_convtranspose.py b/tests/transformation/streamline/test_move_scalar_past_convtranspose.py index 1e894c9cb2..7da22abd87 100644 --- a/tests/transformation/streamline/test_move_scalar_past_convtranspose.py +++ b/tests/transformation/streamline/test_move_scalar_past_convtranspose.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, Xilinx +# Copyright (C) 2023, Advanced Micro Devices, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -97,6 +97,7 @@ def test_move_scalar_past_conv(idim, stride, ifm_ch, ofm_ch, k, padding): np.random.seed(0) model.set_initializer("p1", *np.random.rand(1).astype(np.float32)) model.set_initializer("p2", np.random.rand(*conv_param_shape).astype(np.float32)) + new_model = model.transform(MoveScalarMulPastConvTranspose()) inp_dict = {"top_in": np.random.rand(*input_shape).astype(np.float32)}