summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Anthony Barbier [Wed, 24 Jan 2018 16:23:15 +0000 (16:23 +0000)]
arm_compute v18.01
Change-Id: I9bfa178c2e38bfd5fc812e62aab6760d87748e05
Anthony Barbier [Wed, 3 Jan 2018 16:21:54 +0000 (16:21 +0000)]
Merge pull request #325 from lukeiwanski/feature/no_exceptions
ARM_COMPUTE_NO_EXCEPTIONS macro guard
Anthony Barbier [Thu, 14 Dec 2017 23:48:46 +0000 (23:48 +0000)]
arm_compute v17.12
Anthony Barbier [Mon, 23 Oct 2017 17:55:17 +0000 (18:55 +0100)]
Update AlexNet example with accessors
Anthony Barbier [Mon, 23 Oct 2017 17:28:30 +0000 (18:28 +0100)]
Merge pull request #244 from forresti/fix-comment
fix comment
Anthony Barbier [Mon, 23 Oct 2017 16:11:14 +0000 (17:11 +0100)]
Merge pull request #258 from giorgio-arena/patch-1
Update 00_introduction.dox
giorgio-arena [Mon, 23 Oct 2017 15:58:59 +0000 (16:58 +0100)]
Update 00_introduction.dox
Forrest Iandola [Mon, 16 Oct 2017 07:44:24 +0000 (00:44 -0700)]
fix comment
typo
kernerl's --> kernel's
Kaizen [Thu, 12 Oct 2017 13:26:51 +0000 (14:26 +0100)]
arm_compute v17.10
Change-Id: If1489af40eccd0219ede8946577afbf04db31b29
Kaizen [Thu, 28 Sep 2017 13:38:23 +0000 (14:38 +0100)]
arm_compute v17.09
Change-Id: I4bf8f4e6e5f84ce0d5b6f5ba570d276879f42a81
Anthony Barbier [Fri, 25 Aug 2017 09:08:42 +0000 (10:08 +0100)]
Merge pull request #195 from DensityCo/master
Fix Yocto cross-compiles
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