Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
ebe7d396
Commit
ebe7d396
authored
Apr 02, 2018
by
James Willis
Browse files
Fix SSE intrinsic.
parent
3ce7aab6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/vector.h
View file @
ebe7d396
...
...
@@ -342,8 +342,8 @@
#define vec_floor(a) _mm_floor_ps(a)
#define vec_cmp_gt(a, b) _mm_cmpgt_ps(a, b)
#define vec_cmp_lt(a, b) _mm_cmplt_ps(a, b)
#define vec_cmp_lte(a, b) _mm_cmp_ps(a, b
, _CMP_LE_OQ
)
#define vec_cmp_gte(a, b) _mm_cmp_ps(a, b
, _CMP_GE_OQ
)
#define vec_cmp_lte(a, b) _mm_cmp
le
_ps(a, b)
#define vec_cmp_gte(a, b) _mm_cmp
ge
_ps(a, b)
#define vec_cmp_result(a) _mm_movemask_ps(a)
#define vec_is_mask_true(a) _mm_movemask_ps(a.v)
#define vec_and(a, b) _mm_and_ps(a, b)
...
...
Yves Revaz
@yvesrevaz
mentioned in issue
#416 (closed)
·
Apr 15, 2018
mentioned in issue
#416 (closed)
mentioned in issue #416
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment