File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 19
19
BRANCH_NAME : ${{ github.head_ref || github.ref_name }}
20
20
21
21
jobs :
22
- ubuntu-latest -make :
23
- runs-on : ubuntu-latest
22
+ ubuntu-focal -make :
23
+ runs-on : ubuntu-20.04
24
24
25
25
steps :
26
26
- name : Clone
@@ -31,12 +31,12 @@ jobs:
31
31
id : depends
32
32
run : |
33
33
sudo apt-get update
34
- sudo apt-get install build-essential
34
+ sudo apt-get install build-essential gcc-8
35
35
36
36
- name : Build
37
37
id : make_build
38
38
run : |
39
- make
39
+ CC=gcc-8 make
40
40
41
41
ubuntu-latest-cmake :
42
42
runs-on : ubuntu-latest
@@ -216,7 +216,7 @@ jobs:
216
216
runs-on : ubuntu-latest
217
217
218
218
needs :
219
- - ubuntu-latest -make
219
+ - ubuntu-focal -make
220
220
- ubuntu-latest-cmake
221
221
- macOS-latest-make
222
222
- macOS-latest-cmake
Original file line number Diff line number Diff line change @@ -436,7 +436,7 @@ static const size_t CACHE_LINE_SIZE_F32 = CACHE_LINE_SIZE/sizeof(float);
436
436
static inline __m128i bytes_from_nibbles_16 (const uint8_t * rsi )
437
437
{
438
438
// Load 8 bytes from memory
439
- __m128i tmp = _mm_loadu_si64 ( ( const __m128i * )rsi );
439
+ __m128i tmp = _mm_loadl_epi64 ( ( const __m128i * )rsi );
440
440
441
441
// Expand bytes into uint16_t values
442
442
__m128i bytes = _mm_cvtepu8_epi16 ( tmp );
You can’t perform that action at this time.
0 commit comments