blob: 9895e343b68dd21794a202f24e6b1e069c88bd88 [file] [log] [blame]
Marat Dukhance7a3f82020-05-17 21:46:44 -07001#!/bin/sh
2# Copyright 2020 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################################### ARM NEON ##################################
8tools/xngen src/f32-conv-hwc/3x3s2p1c3-neon-x2.c.in -D CHANNEL_TILE=8 -D HEIGHT_TILE=2 -D FMA=1 -o src/f32-conv-hwc/gen/3x3s2p1c3x8-neonfma-2x2.c
9tools/xngen src/f32-conv-hwc/3x3s2p1c3-neon-x2.c.in -D CHANNEL_TILE=4 -D HEIGHT_TILE=2 -D FMA=1 -o src/f32-conv-hwc/gen/3x3s2p1c3x4-neonfma-2x2.c
10
11tools/xngen src/f32-conv-hwc/3x3s2p0p1c3-neon-x2.c.in -D CHANNEL_TILE=8 -D HEIGHT_TILE=2 -D FMA=1 -o src/f32-conv-hwc/gen/3x3s2p0p1c3x8-neonfma-2x2.c
12tools/xngen src/f32-conv-hwc/3x3s2p0p1c3-neon-x2.c.in -D CHANNEL_TILE=4 -D HEIGHT_TILE=2 -D FMA=1 -o src/f32-conv-hwc/gen/3x3s2p0p1c3x4-neonfma-2x2.c
13
14tools/xngen src/f32-conv-hwc/3x3s2p1c3-neon-x2.c.in -D CHANNEL_TILE=8 -D HEIGHT_TILE=2 -D FMA=0 -o src/f32-conv-hwc/gen/3x3s2p1c3x8-neon-2x2.c
15tools/xngen src/f32-conv-hwc/3x3s2p1c3-neon-x2.c.in -D CHANNEL_TILE=4 -D HEIGHT_TILE=2 -D FMA=0 -o src/f32-conv-hwc/gen/3x3s2p1c3x4-neon-2x2.c
16
17tools/xngen src/f32-conv-hwc/3x3s2p0p1c3-neon-x2.c.in -D CHANNEL_TILE=8 -D HEIGHT_TILE=2 -D FMA=0 -o src/f32-conv-hwc/gen/3x3s2p0p1c3x8-neon-2x2.c
18tools/xngen src/f32-conv-hwc/3x3s2p0p1c3-neon-x2.c.in -D CHANNEL_TILE=4 -D HEIGHT_TILE=2 -D FMA=0 -o src/f32-conv-hwc/gen/3x3s2p0p1c3x4-neon-2x2.c