1*4bdc9457SAndroid Build Coastguard Worker#!/bin/sh 2*4bdc9457SAndroid Build Coastguard Worker# Copyright 2022 Google LLC 3*4bdc9457SAndroid Build Coastguard Worker# 4*4bdc9457SAndroid Build Coastguard Worker# This source code is licensed under the BSD-style license found in the 5*4bdc9457SAndroid Build Coastguard Worker# LICENSE file in the root directory of this source tree. 6*4bdc9457SAndroid Build Coastguard Worker 7*4bdc9457SAndroid Build Coastguard Worker################################### ARM NEON ################################## 8*4bdc9457SAndroid Build Coastguard Workertools/xngen src/f16-vlrelu/neonfp16arith.c.in -D BATCH_TILE=8 -o src/f16-vlrelu/gen/vlrelu-neonfp16arith-x8.c & 9*4bdc9457SAndroid Build Coastguard Workertools/xngen src/f16-vlrelu/neonfp16arith.c.in -D BATCH_TILE=16 -o src/f16-vlrelu/gen/vlrelu-neonfp16arith-x16.c & 10*4bdc9457SAndroid Build Coastguard Worker 11*4bdc9457SAndroid Build Coastguard Worker################################### x86 F16C ################################## 12*4bdc9457SAndroid Build Coastguard Workertools/xngen src/f16-vlrelu/f16c.c.in -D BATCH_TILE=8 -o src/f16-vlrelu/gen/vlrelu-f16c-x8.c & 13*4bdc9457SAndroid Build Coastguard Workertools/xngen src/f16-vlrelu/f16c.c.in -D BATCH_TILE=16 -o src/f16-vlrelu/gen/vlrelu-f16c-x16.c & 14*4bdc9457SAndroid Build Coastguard Worker 15*4bdc9457SAndroid Build Coastguard Worker################################## Unit tests ################################# 16*4bdc9457SAndroid Build Coastguard Workertools/generate-vunary-test.py --spec test/f16-vlrelu.yaml --output test/f16-vlrelu.cc & 17*4bdc9457SAndroid Build Coastguard Worker 18*4bdc9457SAndroid Build Coastguard Workerwait 19