aboutsummaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-08-06 09:25:36 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit4ead11aa586422ffc9b44123fd4b1ba308f08f24 (patch)
tree266b3217e7b75d1864c2df0cb618bbedde179037 /SConscript
parent6b4e604aa2f8598bce37abe76654b87a41ababb7 (diff)
downloadComputeLibrary-4ead11aa586422ffc9b44123fd4b1ba308f08f24.tar.gz
COMPMID-1479: Fixed non fortran_order NPY loading.
- Reverse dimensions when loading a non-fortran order tensor - Support saving tensors with arbitrary number of dimensions (Not just 2) - Fixed a minor bug in SONAME generation Change-Id: I36aa0b05c9d3568d1296da2d84d5e299b40459cc Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/142794 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Michele DiGiorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConscript b/SConscript
index bfc3e78b70..7b0753ddcd 100644
--- a/SConscript
+++ b/SConscript
@@ -43,7 +43,7 @@ def build_library(name, sources, static=False, libs=[]):
library_prefix = obj[0].path[:-(1 + len(SONAME_VERSION))]
real_lib = "%s.%s" % (library_prefix, SONAME_VERSION)
- for f in Glob("#%s*" % library_prefix):
+ for f in Glob("#%s.*" % library_prefix):
if str(f) != real_lib:
symlinks.append("%s/%s" % (directory,str(f)))