Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reformat source code with clang-format | Erik Schnetter | 2015-10-16 | 1 | -611/+520 |
| | | | | | | | | | Note: If you have an existing checkout with modifications, then you should: (1) save your current state on a branch (2) run clang-format on this branch (3) compare this branch to a fresh checkout of the clang-formatted master Since both your branch and master have been formatted with clang-format, this will lead to a very small diff, avoiding spurious changes due to formatting differences. | ||||
* | Correct syntax errors in NEON vectors | Erik Schnetter | 2013-11-26 | 1 | -1/+1 |
| | |||||
* | Introduce mad(), as low-accuracy version of fma() | Erik Schnetter | 2013-09-10 | 1 | -3/+6 |
| | |||||
* | Implement new integer functions for NEON | Erik Schnetter | 2013-09-02 | 1 | -7/+33 |
| | |||||
* | Implement more integer functions: abs bitifthen clz isignbit max min ↵ | Erik Schnetter | 2013-09-01 | 1 | -1/+1 |
| | | | | | | popcount rotate Rename integer signbit to isignbit to avoid name conflicts. | ||||
* | NEON: Describe idea for prod() improvement | Erik Schnetter | 2013-08-26 | 1 | -0/+1 |
| | |||||
* | Make frexp take a pointer argument instead of a reference | Erik Schnetter | 2013-08-21 | 1 | -1/+1 |
| | |||||
* | Neon: Implement unaligned load/store operations | Erik Schnetter | 2013-08-20 | 1 | -6/+10 |
| | |||||
* | Implement ifthen with boolvec arguments | Erik Schnetter | 2013-07-07 | 1 | -4/+8 |
| | |||||
* | Simplify return type specifications | Erik Schnetter | 2013-07-07 | 1 | -4/+4 |
| | |||||
* | Do not require C++11 any more | Erik Schnetter | 2013-07-06 | 1 | -8/+8 |
| | | | | | | Do not use any C++11-specific features, such as the auto keyword. Use C99 math functions when C++11 is not available. | ||||
* | Implement maxval and minval reduction operations | Erik Schnetter | 2013-07-04 | 1 | -0/+14 |
| | |||||
* | Do not use type punning for converting between vectors and elements -- gcc ↵ | Erik Schnetter | 2013-07-03 | 1 | -6/+22 |
| | | | | 4.8 doesn't like this any more | ||||
* | Whitespace change in asm intrinsics | Erik Schnetter | 2013-07-02 | 1 | -1/+1 |
| | |||||
* | Implement frexp | Erik Schnetter | 2013-06-28 | 1 | -0/+1 |
| | |||||
* | Correct NEON implementation | Erik Schnetter | 2013-06-17 | 1 | -9/+23 |
| | |||||
* | Support NEON float32x4_t | Erik Schnetter | 2013-06-17 | 1 | -0/+558 |