summaryrefslogtreecommitdiff
path: root/src/gf_method.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gf_method.c')
-rw-r--r--src/gf_method.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/gf_method.c b/src/gf_method.c
index 2548a63..2210305 100644
--- a/src/gf_method.c
+++ b/src/gf_method.c
@@ -121,11 +121,17 @@ int create_gf_from_argv(gf_t *gf, int w, int argc, char **argv, int starting)
} else if (strcmp(argv[starting], "LAZY") == 0) {
region_type |= GF_REGION_LAZY;
starting++;
+ } else if (strcmp(argv[starting], "SIMD") == 0) {
+ region_type |= GF_REGION_SIMD;
+ starting++;
+ } else if (strcmp(argv[starting], "NOSIMD") == 0) {
+ region_type |= GF_REGION_NOSIMD;
+ starting++;
} else if (strcmp(argv[starting], "SSE") == 0) {
- region_type |= GF_REGION_SSE;
+ region_type |= GF_REGION_SIMD;
starting++;
} else if (strcmp(argv[starting], "NOSSE") == 0) {
- region_type |= GF_REGION_NOSSE;
+ region_type |= GF_REGION_NOSIMD;
starting++;
} else if (strcmp(argv[starting], "CAUCHY") == 0) {
region_type |= GF_REGION_CAUCHY;