search for: a15

Displaying 20 results from an estimated 267 matches for "a15".

Did you mean: 15
2017 May 19
2
Buildbots timing out on full builds
Hi, We've noticed that recently some of our bots (mostly clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out whenever someone commits a change to TableGen: r303418: http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7268 r303346: http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7242 r303341: http://lab.llvm.org:8011/builders/clang-...
2013 Dec 19
3
[LLVMdev] LLVM ARM VMLA instruction
...enchmarks/Misc/ffbench.c 8 llvm/projects/test-suite/SingleSource/Benchmarks/Misc/matmul_f64_4x4.c 18 llvm/projects/test-suite/SingleSource/Benchmarks/BenchmarkGame/n-body.c 36 With vmul+vadd instruction pair comes extra overhead of load/store ops, as seen in assembly generated. With -mcpu=cortex-a15 option clang performs better, as it emits vmla instructions. > > This was tested on real hardware. Time taken for a 4x4 matrix >> multiplication: >> > > What hardware? A7? A8? A9? A15? > I tested it on A15, i don't have access to A8 rightnow, but i intend to test i...
2011 Mar 28
2
"Holes" in a data frame with time intervals
...ormation about bank branches with a validity time associated (start date/end date, format YYYY-MM-DD) to some attributes (for example number of employees assigned). The following example will clarify this description: BANK_ID BRANCH_ID EMPLOYEE # STARTDATE ENDDATE B1 A15 30 2001-01-01 2001-10-15 B1 A15 28 2001-10-16 2001-12-31 B1 A15 32 2002-01-01 2003-04-18 B1 A15 33 2003-04-19 2004-12-31 B1 A15 29 2005-03-01 2010-12-31 B1 A15...
2017 May 19
2
Buildbots timing out on full builds
...anitizer-x86_64-linux-fast also timed out after one of my commits this morning. > >> On 19 May 2017, at 14:14, Diana Picus <diana.picus at linaro.org> wrote: >> >> Hi, >> >> We've noticed that recently some of our bots (mostly >> clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out >> whenever someone commits a change to TableGen: >> >> r303418: http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7268 >> r303346: http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7242 >> r303...
2017 May 21
2
Buildbots timing out on full builds
...this > morning. > >> > >>> On 19 May 2017, at 14:14, Diana Picus <diana.picus at linaro.org> wrote: > >>> > >>> Hi, > >>> > >>> We've noticed that recently some of our bots (mostly > >>> clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out > >>> whenever someone commits a change to TableGen: > >>> > >>> r303418: http://lab.llvm.org:8011/builders/clang-cmake-armv7- > a15/builds/7268 > >>> r303346: http://lab.llvm.org:8011/builders/clang-...
2013 Dec 19
0
[LLVMdev] LLVM ARM VMLA instruction
...ly look at the benchmark you're tuning to, you'll never see it. It may be that the cost is small and that we decide to pay the price, but not until we know that the cost is. This was tested on real hardware. Time taken for a 4x4 matrix > multiplication: > What hardware? A7? A8? A9? A15? Also, as stated by Renato - "there is a pipeline stall between two > sequential VMLAs (possibly due to the need of re-use of some registers) and > this made code much slower than a sequence of VMLA+VMUL+VADD" , when i use > -mcpu=cortex-a15 as option, clang emits vmla instruct...
2011 Nov 29
4
[ANNOUNCE] Xen port to Cortex-A15 / ARMv7 with virt extensions
Hi all, a few weeks ago I (and a few others) started hacking on a proof-of-concept hypervisor port to Cortex-A15 which uses and requires ARMv7 virtualization extensions. The intention of this work was to find out how to best support ARM v7+ on Xen. See http://old-list-archives.xen.org/archives/html/xen-arm/2011-09/msg00013.html for more details. I am pleased to announce that significant progress has been ma...
2011 Nov 29
4
[ANNOUNCE] Xen port to Cortex-A15 / ARMv7 with virt extensions
Hi all, a few weeks ago I (and a few others) started hacking on a proof-of-concept hypervisor port to Cortex-A15 which uses and requires ARMv7 virtualization extensions. The intention of this work was to find out how to best support ARM v7+ on Xen. See http://old-list-archives.xen.org/archives/html/xen-arm/2011-09/msg00013.html for more details. I am pleased to announce that significant progress has been ma...
2011 Nov 29
4
[ANNOUNCE] Xen port to Cortex-A15 / ARMv7 with virt extensions
Hi all, a few weeks ago I (and a few others) started hacking on a proof-of-concept hypervisor port to Cortex-A15 which uses and requires ARMv7 virtualization extensions. The intention of this work was to find out how to best support ARM v7+ on Xen. See http://old-list-archives.xen.org/archives/html/xen-arm/2011-09/msg00013.html for more details. I am pleased to announce that significant progress has been ma...
2016 Jun 28
2
SVN almost dead, bots crazy
Hi, Anyone knows what's going on with SVN? http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15 http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-a15 http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-selfhost http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-selfhost-neon http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-a15-full-sh etc. svn: E175012: Connection time...
2013 Dec 19
2
[LLVMdev] LLVM ARM VMLA instruction
...nstruction emitted by clang but GCC happily emits it. This was tested on real hardware. Time taken for a 4x4 matrix multiplication: clang : ~14 secs gcc : ~9 secs Time taken for a 3x3 matrix multiplication: clang : ~6.5 secs gcc : ~5 secs when flag -mcpu=cortex-a8 is changed to -mcpu=cortex-a15, clang emits vmla instructions (gcc emits by default) Time for 4x4 matrix multiplication : clang : ~8.5 secs GCC : ~9secs Time for matrix multiplication : clang : ~3.8 secs GCC : ~5 secs Please let me know if i am missing something. (-ffast-math option doesn't help in this case.) On examin...
2017 May 22
4
Buildbots timing out on full builds
...>> >> >>> On 19 May 2017, at 14:14, Diana Picus <diana.picus at linaro.org> wrote: >> >>> >> >>> Hi, >> >>> >> >>> We've noticed that recently some of our bots (mostly >> >>> clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out >> >>> whenever someone commits a change to TableGen: >> >>> >> >>> r303418: >> >>> http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7268 >> >>> r303346: >>...
2016 Jun 14
2
Buildbot numbers for the last week of 6/05/2016 - 6/11/2016
...polly-amd64-linux | 34:53:03 sanitizer-x86_64-linux-fuzzer | 30:17:25 clang-x64-ninja-win7 | 25:37:00 llvm-clang-lld-x86_64-debian-fast | 25:32:54 clang-cmake-thumbv7-a15-full-sh | 25:31:44 clang-x86-win2008-selfhost | 25:25:42 clang-atom-d525-fedora-rel | 24:52:25 sanitizer-x86_64-linux | 24:21:15 clang-ppc64be-linux-lnt...
2016 Jul 27
1
Buildbot numbers for the week of 7/10/2016 - 7/16/2016
...rf-x86_64-penryn-O3-polly-before-vectorizer | 39:52:18 clang-native-aarch64-full | 31:59:05 sanitizer-x86_64-linux-bootstrap | 27:37:36 perf-x86_64-penryn-O3-polly-before-vectorizer-unprofitable | 25:34:19 clang-cmake-armv7-a15-selfhost | 24:00:48 clang-x86_64-linux-selfhost-modules | 23:57:52 polly-amd64-linux | 23:29:30 clang-cmake-thumbv7-a15-full-sh | 23:23:52 lldb-windows7-android...
2016 Oct 05
1
Buildbot numbers for the week of 9/25/2016 - 10/1/2016
...g-x64-ninja-win7 | 11:24:55 sanitizer-windows | 11:01:58 lld-x86_64-win7 | 11:00:28 llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast | 10:44:15 clang-cmake-thumbv7-a15-full-sh | 09:54:20 clang-cmake-armv7-a15-selfhost-neon | 07:15:43 libcxx-libcxxabi-libunwind-arm-linux | 06:41:17 sanitizer-x86_64-linux-autoconf | 06:39:25 clang-cmake-thumbv7-a15...
2014 Sep 20
2
[LLVMdev] ARM assembler bug on LLVM 3.5
...;t work with clang. clang reports error on the sdiv instruction in the assembler. The problem is this - you either compile this program with -mcpu=cortex-a9, then clang reports error on the sdiv instruction because cortex a9 doesn't have sdiv. Or - you compile the program with -mcpu=cortex-a15, then clang compiles it, but it uses full cortex-a15 instruction set and the program crashes on cortex a9 and earlier cores. Even if I use -no-integrated-as (as suggested in bug 18864), clang still examines the string in "asm" statement and reports an error. GCC doesn't examine th...
2017 May 24
2
Buildbots timing out on full builds
...0m44.551s > > sanitizer-x86_64-linux-fast also timed out after one of my commits this > morning. > > On 19 May 2017, at 14:14, Diana Picus <diana.picus at linaro.org> wrote: > > Hi, > > We've noticed that recently some of our bots (mostly > clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out > whenever someone commits a change to TableGen: > > r303418: > http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7268 > r303346: > http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7242 > r303341: > h...
2017 May 22
2
Buildbots timing out on full builds
...19 May 2017, at 14:14, Diana Picus <diana.picus at linaro.org> wrote: >>>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> We've noticed that recently some of our bots (mostly >>>>>>> clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out >>>>>>> whenever someone commits a change to TableGen: >>>>>>> >>>>>>> r303418: >>>>>>> http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15/builds/7268 >>&gt...
2016 Jun 28
0
Buildbot numbers for the last week of 6/19/2016 - 6/25/2016
...---------------------+----------- lldb-x86-windows-msvc2015 | 132:47:15 sanitizer-x86_64-linux-fast | 58:07:21 sanitizer-x86_64-linux | 48:59:06 perf-x86_64-penryn-O3 | 41:37:20 clang-cmake-thumbv7-a15-full-sh | 34:34:23 clang-cmake-armv7-a15-selfhost | 34:18:12 clang-cmake-mipsel | 30:27:12 clang-x86-win2008-selfhost | 25:04:16 clang-ppc64be-linux-lnt | 24:21:09 sanitizer-x86_64-l...
2017 May 31
2
Buildbots timing out on full builds
...t;> wrote: >>>>>>>>>> >>>>>>>>>> Hi, >>>>>>>>>> >>>>>>>>>> We've noticed that recently some of our bots (mostly >>>>>>>>>> clang-cmake-armv7-a15 and clang-cmake-thumbv7-a15) started timing out >>>>>>>>>> whenever someone commits a change to TableGen: >>>>>>>>>> >>>>>>>>>> r303418: >>>>>>>>>> http://lab.llvm.org:8011/build...