blob: 6367cb30f64e02493a4c992604b90c48f432f852 [file] [log] [blame]
Manupa Karunaratned83d2e12020-07-20 12:05:32 +01001# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
2#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an AS IS BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# Description:
Louis Verhaardaeae5672020-11-02 18:04:27 +010017# Contains unit tests for npu_encode_weights API for an external consumer
Manupa Karunaratned83d2e12020-07-20 12:05:32 +010018import numpy as np
19import pytest
20
Louis Verhaardaeae5672020-11-02 18:04:27 +010021from ethosu.vela.api import npu_encode_weights
22from ethosu.vela.api import NpuAccelerator
Louis Verhaarde8a5a782020-11-02 18:04:27 +010023from ethosu.vela.api import NpuBlockTraversal
Manupa Karunaratned83d2e12020-07-20 12:05:32 +010024
25
26@pytest.mark.parametrize(
Louis Verhaardaeae5672020-11-02 18:04:27 +010027 "arch", list(NpuAccelerator),
Manupa Karunaratned83d2e12020-07-20 12:05:32 +010028)
29@pytest.mark.parametrize("dilation_x", [1, 2])
30@pytest.mark.parametrize("dilation_y", [1, 2])
31@pytest.mark.parametrize("ifm_bitdepth", [8, 16])
32@pytest.mark.parametrize("depth_control", [1, 2, 3])
33@pytest.mark.parametrize("weights_shape_and_block_depth", [((16, 16, 16, 16), 8), ((3, 3, 25, 16), 8)])
34def test_encode_weights(
35 arch, weights_shape_and_block_depth, dilation_x, dilation_y, ifm_bitdepth, depth_control,
36):
37 """
38 This unit test checks the interface of the API function but not the functionality.
39 Functional correctness is tested at a system level.
40 """
41
42 weights_shape = weights_shape_and_block_depth[0]
43 ofm_block_depth = weights_shape_and_block_depth[1]
44 val_max = np.iinfo(np.uint8).max
45 weights_hwio = np.random.randint(val_max, size=weights_shape, dtype=np.uint8)
46 weights_ohwi = np.transpose(weights_hwio, (3, 0, 1, 2))
47 is_depthwise = True if depth_control == 2 else False
Louis Verhaarde8a5a782020-11-02 18:04:27 +010048 block_traversal = NpuBlockTraversal.PART_KERNEL_FIRST if depth_control == 3 else NpuBlockTraversal.DEPTH_FIRST
Manupa Karunaratned83d2e12020-07-20 12:05:32 +010049 dilation_xy = (dilation_x, dilation_y)
50
Louis Verhaardaeae5672020-11-02 18:04:27 +010051 encoded_stream = npu_encode_weights(
Manupa Karunaratned83d2e12020-07-20 12:05:32 +010052 accelerator=arch,
53 weights_volume=weights_ohwi,
54 dilation_xy=dilation_xy,
55 ifm_bitdepth=ifm_bitdepth,
56 ofm_block_depth=ofm_block_depth,
57 is_depthwise=is_depthwise,
Louis Verhaarde8a5a782020-11-02 18:04:27 +010058 block_traversal=block_traversal,
Manupa Karunaratned83d2e12020-07-20 12:05:32 +010059 )
60 assert type(encoded_stream) == bytearray