Skip to content

Commit 24b92d8

Browse files
committed
switch to quote import
1 parent 1163c9f commit 24b92d8

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@ jobs:
2222
with:
2323
submodules: true
2424

25-
- name: Install simde
25+
- name: Setup lib path
2626
run: |
2727
if [ "${{ runner.os }}" == 'macOS' ]; then
28-
brew install simde
2928
echo "DYLD_LIBRARY_PATH=$PWD" >> $GITHUB_ENV
3029
else
31-
sudo apt install libsimde-dev
3230
echo "LD_LIBRARY_PATH=$PWD" >> $GITHUB_ENV
3331
fi
3432

Block_Copy.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#ifndef MY_AVX_DEFINED
55
#define SIMDE_ENABLE_NATIVE_ALIASES
6-
#include <simde/x86/avx512.h> // SSE intrinsics
6+
#include "simde/x86/avx512.h" // SSE intrinsics
77
#endif
88

99
void Copy_To_Block(

CvxCompress.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#ifndef SIMDE_ENABLE_NATIVE_ALIASES
1010
#define SIMDE_ENABLE_NATIVE_ALIASES
11-
#include <simde/x86/avx512.h> // SSE intrinsics
11+
#include "simde/x86/avx512.h" // SSE intrinsics
1212
#endif
1313

1414
#include "CvxCompress.hxx"

Run_Length_Encode_Slow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <stdlib.h>
66

77
#define SIMDE_ENABLE_NATIVE_ALIASES
8-
#include <simde/x86/avx512.h> // SSE intrinsics
8+
#include "simde/x86/avx512.h" // SSE intrinsics
99

1010
#include "Run_Length_Escape_Codes.hxx"
1111

Wavelet_Transform_Slow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ void Gen_Ds79(const char* path, int min_n, int max_n, int num_vars)
502502
fprintf(fp," * Base functions for wavelet transforms of length %d to %d.\n",1<<min_n,1<<max_n);
503503
fprintf(fp," */\n\n");
504504
fprintf(fp,"#define SIMDE_ENABLE_NATIVE_ALIASES \n");
505-
fprintf(fp,"#include <simde/x86/avx.h> // AVX intrinsics\n\n");
505+
fprintf(fp,"#include \"simde/x86/avx.h\" // AVX intrinsics\n\n");
506506

507507
fprintf(fp,"/*\n");
508508
fprintf(fp," * Define coefficients for Antonini 7-9 tap filter.\n");

0 commit comments

Comments
 (0)