Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hybrid Parallel AD (Part 2/?) #1284

Merged
merged 31 commits into from
May 29, 2021
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f7f1b96
local indices to allow parallel registration
pcarruscag May 9, 2021
20cbe7a
reset inputs as they are extracted
pcarruscag May 9, 2021
e8522c6
fix #1285
pcarruscag May 10, 2021
7f9f647
address #1273
pcarruscag May 10, 2021
2144acd
try to fix restarts
pcarruscag May 13, 2021
7efd040
Merge remote-tracking branch 'upstream/develop' into hybrid_parallel_ad3
pcarruscag May 13, 2021
c4e3eb4
Merge remote-tracking branch 'upstream/feature_dynFSIAD' into hybrid_…
pcarruscag May 13, 2021
0d55909
update regressions
pcarruscag May 17, 2021
0f06d7a
Merge remote-tracking branch 'upstream/add_unstchtcase' into hybrid_p…
pcarruscag May 17, 2021
91503ea
Merge branch 'feature_dynFSIAD' into hybrid_parallel_ad3
pcarruscag May 18, 2021
8c6233a
Move \!Crossterm bool in front of loop for unsteady adjoint extraction.
TobiKattmann May 18, 2021
7422c00
dont extract some terms during cross term evaluation
pcarruscag May 18, 2021
d598915
Merge branch 'hybrid_parallel_ad3' of /~https://github.com/su2code/SU2 …
pcarruscag May 18, 2021
d949cbe
apply BGS relaxation also to velocities
pcarruscag May 18, 2021
b7f5b05
cleanup overzealous SU2_OMP_MASTER
pcarruscag May 19, 2021
dcc5038
Merge remote-tracking branch 'origin/develop' into hybrid_parallel_ad3
TobiKattmann May 24, 2021
05d1ce7
Merge remote-tracking branch 'upstream/develop' into hybrid_parallel_ad3
pcarruscag May 24, 2021
6364cbf
less duplication, better unsteady FSI restarts
pcarruscag May 24, 2021
d2fbc13
fix for turbo
pcarruscag May 24, 2021
cd9b974
Merge branch 'hybrid_parallel_ad3' of /~https://github.com/su2code/SU2 …
TobiKattmann May 24, 2021
319e51e
fix for moving grid disc adj
pcarruscag May 24, 2021
6094cb6
update tests
pcarruscag May 24, 2021
d5715c4
local indices only, no more hidden global "adjointPosition"
pcarruscag May 25, 2021
567064a
fixes
pcarruscag May 25, 2021
ef4f233
proper-er way to reset input
pcarruscag May 26, 2021
9df5d02
small things
pcarruscag May 26, 2021
9a6346f
Merge branch 'hybrid_parallel_ad3' of /~https://github.com/su2code/SU2 …
TobiKattmann May 27, 2021
19d3329
Remove errors from #1281. No auto for su2double with rhs math operati…
TobiKattmann May 27, 2021
e8cee0b
CoDiPack update.
jblueh May 27, 2021
be27e1d
Testing RealReverseIndex.
jblueh May 27, 2021
4593083
Merge branch 'develop' into hybrid_parallel_ad3
pcarruscag May 29, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Common/include/code_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ using su2double = codi::RealReversePrimal;
#elif CODI_PRIMAL_INDEX_TAPE
using su2double = codi::RealReversePrimalIndex;
#else
using su2double = codi::RealReverse;
using su2double = codi::RealReverseIndex;
pcarruscag marked this conversation as resolved.
Show resolved Hide resolved
#endif
#endif
#elif defined(CODI_FORWARD_TYPE) // forward mode AD
Expand Down