Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
e14ab7b9
Commit
e14ab7b9
authored
Jan 09, 2014
by
peastman
Browse files
Bug fix
parent
76d592d6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
openmmapi/include/openmm/internal/vectorize8.h
openmmapi/include/openmm/internal/vectorize8.h
+4
-4
No files found.
openmmapi/include/openmm/internal/vectorize8.h
View file @
e14ab7b9
...
...
@@ -201,13 +201,13 @@ static inline void transpose(const fvec4& in1, const fvec4& in2, const fvec4& in
fvec4
i5
=
in5
,
i6
=
in6
,
i7
=
in7
,
i8
=
in8
;
_MM_TRANSPOSE4_PS
(
i1
,
i2
,
i3
,
i4
);
_MM_TRANSPOSE4_PS
(
i5
,
i6
,
i7
,
i8
);
out1
=
_mm256_castps128_ps256
(
i
n
1
);
out1
=
_mm256_castps128_ps256
(
i1
);
out1
=
_mm256_insertf128_ps
(
out1
,
i5
,
1
);
out2
=
_mm256_castps128_ps256
(
i
n
2
);
out2
=
_mm256_castps128_ps256
(
i2
);
out2
=
_mm256_insertf128_ps
(
out2
,
i6
,
1
);
out3
=
_mm256_castps128_ps256
(
i
n
3
);
out3
=
_mm256_castps128_ps256
(
i3
);
out3
=
_mm256_insertf128_ps
(
out3
,
i7
,
1
);
out4
=
_mm256_castps128_ps256
(
i
n
4
);
out4
=
_mm256_castps128_ps256
(
i4
);
out4
=
_mm256_insertf128_ps
(
out4
,
i8
,
1
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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