aboutsummaryrefslogtreecommitdiff
path: root/scripts/fix_code_formatting.sh
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-08-31 14:56:32 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitbeabe3bdf47306d0940ddf2ddf52ada6903a0875 (patch)
tree97afa72f2d60858898ab2dadb95e4cda7176e88b /scripts/fix_code_formatting.sh
parent7655a67384895868c0afa72bfda9a9b2fcfdf323 (diff)
downloadComputeLibrary-beabe3bdf47306d0940ddf2ddf52ada6903a0875.tar.gz
COMPMID-481: Add AArch64 GEMM
Change-Id: I34f94f99cb05f0eabafee13c5e623ee779b72360 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83741 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'scripts/fix_code_formatting.sh')
-rwxr-xr-xscripts/fix_code_formatting.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/fix_code_formatting.sh b/scripts/fix_code_formatting.sh
index ccda38abab..a07d2615af 100755
--- a/scripts/fix_code_formatting.sh
+++ b/scripts/fix_code_formatting.sh
@@ -28,6 +28,11 @@ else
fi
for f in $files
do
+ if [[ $f == *"/assembly/"* ]]
+ then
+ continue
+ fi
+
sed -i 's/\t/ /g' $f
clang-format -i -style=file $f
astyle -n -q $ASTYLE_PARAMETERS $f