summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
bradford barr [Mon, 7 Aug 2017 18:17:09 +0000 (14:17 -0400)]
Fix Yocto cross-compiles
Yocto defines it's compilers in the environment complete with some arch flags.
For example:
```
CC="arm-poky-linux-gnueabi-gcc \
-march=armv7-a \
-mfloat-abi=hard \
-mfpu=neon \
-mtune=cortex-a9 \
--sysroot=/home/ubuntu/device/build/tmp/sysroots/pico-imx6"
```
The SConstruct file would fail to find the compiler because it was calling
python's subprocess.check_output which expects the first argument of the list
to be _only_ the name of the executable.
This patch allows the SConstruct script to check the version of the compiler
even with funny environment variables. Instead of appending to the compiler
string and passing `shell=True` to subprocess, split `env['CXX']` into an array
and append `-dumpversion` to that array. Python warns against the use of
`shell=True` in subprocess calls.
Anthony Barbier [Mon, 3 Jul 2017 16:06:50 +0000 (17:06 +0100)]
Added data folder (For the tests)
Anthony Barbier [Fri, 30 Jun 2017 07:39:19 +0000 (08:39 +0100)]
Restored accidentally deleted LICENSE file
Anthony Barbier [Wed, 28 Jun 2017 10:33:54 +0000 (11:33 +0100)]
Added reference to Caffe on Compute Library project
Anthony Barbier [Fri, 23 Jun 2017 14:42:00 +0000 (15:42 +0100)]
arm_compute v17.06
Anthony Barbier [Tue, 23 May 2017 10:36:01 +0000 (11:36 +0100)]
Merge pull request #114 from andrew-wja/master
Add a build flag to control whether or not the example programs get built
Andrew Anderson [Thu, 18 May 2017 12:50:38 +0000 (13:50 +0100)]
Add a build parameter controlling whether or not to build the example programs, default to off
Anthony Barbier [Thu, 4 May 2017 08:15:15 +0000 (09:15 +0100)]
arm_compute v17.05
Anthony Barbier [Wed, 12 Apr 2017 17:03:27 +0000 (18:03 +0100)]
Updated README with links to the v17.04 binaries and documentation
Anthony Barbier [Wed, 12 Apr 2017 14:12:46 +0000 (15:12 +0100)]
arm_compute v17.04
Anthony Barbier [Wed, 5 Apr 2017 09:17:32 +0000 (10:17 +0100)]
Merge pull request #14 from sundw2014/master
fix a bug of checking dimensions in NEGEMMTranspose1xWKernel.cpp
Anthony Barbier [Wed, 5 Apr 2017 09:16:53 +0000 (10:16 +0100)]
Merge pull request #11 from ppwwyyxx/patch-1
Include <cerrno>
Anthony Barbier [Wed, 5 Apr 2017 09:14:59 +0000 (10:14 +0100)]
Merge pull request #22 from jlovejoy/patch-1
add license info to README
Jilayne Lovejoy [Tue, 4 Apr 2017 20:11:05 +0000 (14:11 -0600)]
add license info to README
adding explicit statement as to inbound and outbound license to readme
sundw2014 [Mon, 3 Apr 2017 03:24:53 +0000 (03:24 +0000)]
fix a bug of checking dimensions in NEGEMMTranspose1xWKernel.cpp
Yuxin Wu [Fri, 31 Mar 2017 21:54:34 +0000 (14:54 -0700)]
Include <cerrno>
When compiling on Linux host to armv7a target following to the tutorial, got error of "errno undeclared". Include this header fixed this problem.
Anthony Barbier [Fri, 31 Mar 2017 17:25:21 +0000 (18:25 +0100)]
Added link to the binary builds in the README
Anthony Barbier [Fri, 24 Mar 2017 14:54:29 +0000 (14:54 +0000)]
arm_compute v17.03.1
Richard Christie [Fri, 10 Mar 2017 14:51:44 +0000 (14:51 +0000)]
Initial commit