1#!/bin/sh 2# Copyright 2019 Google LLC 3# 4# This source code is licensed under the BSD-style license found in the 5# LICENSE file in the root directory of this source tree. 6 7### Tests for Q8 micro-kernels 8tools/generate-gemm-test.py --spec test/q8-gemm.yaml --output test/q8-gemm.cc 9tools/generate-gemm-test.py --spec test/q8-igemm.yaml --output test/q8-igemm.cc 10tools/generate-dwconv-test.py --spec test/q8-dwconv.yaml --output test/q8-dwconv.cc 11 12### Tests for packing micro-kernels 13tools/generate-pack-test.py --spec test/x32-packx.yaml --output test/x32-packx.cc 14 15### Tests for MaxPool micro-kernels 16tools/generate-maxpool-test.py --spec test/u8-maxpool.yaml --output test/u8-maxpool.cc 17tools/generate-maxpool-test.py --spec test/f32-maxpool.yaml --output test/f32-maxpool.cc 18 19### Tests for ArgMaxPool micro-kernels 20tools/generate-argmaxpool-test.py --spec test/f32-argmaxpool.yaml --output test/f32-argmaxpool.cc 21