-
Notifications
You must be signed in to change notification settings - Fork 857
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
New singlezone discrete adjoint driver #671
Conversation
…h simple naca0012 steady-state case]
…eration is run now.
…_adjoint_single_zone
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @rsanfer,
All looks fine, just a couple of questions.
Pedro
1 , 0.0015213 , 0.001 | ||
2 , 0.00177652 , 0.001 | ||
3 , 0.00222003 , 0.001 | ||
0 , 0.00651231 , 0.001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know why these have changed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, in fact I had to chase this one down for a bit. In principle this is a bug in the current code. It comes because the adaptive CFL is enabled and any time we do a recording after the first one (so, after there has been any geometry recording, for example) it uses the adapted CFL, so the path is changed a bit. With this version, that's no longer the case as the CFL adaptation is not called for the adjoint driver.
/*--- SetRecording stores the computational graph on one iteration of the direct problem. Calling it with NONE | ||
* as argument ensures that all information from a previous recording is removed. ---*/ | ||
|
||
SetRecording(NONE); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this required? I ask because it takes time (especially for FEA+Topology) and in the Adj FSI driver I have it commented out and all seems fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I have not tested it without, so it might be the case that it is not needed. Let me comment it out and see what it does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just tested it, flow adjoint tests are all failing
https://travis-ci.org/su2code/SU2/builds/526434537
so I reverted the changes. I think that @talbring can explain better why that's necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, thanks for trying it. The FSI adjoint seems to work fine without it though, it definitely does not diverge, another AD mystery.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good @rsanfer. Just one or two requests and a couple of questions.
SU2_CFD/include/driver_structure.hpp
Outdated
CDiscAdjSinglezoneDriver(char* confFile, | ||
unsigned short val_nZone, | ||
unsigned short val_nDim, | ||
bool val_periodic, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please remove references to 'val_periodic' in all driver constructors? They were used before to check for periodic meshes so that the old CPhysicalGeometry() constructor could be instantiated. This is no longer necessary now that the periodic BCs have been fixed. That variable can simply be removed from the argument list and deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I'll do that later today.I think it will need to be done also on the python scripts and so on.
@@ -1515,6 +1533,23 @@ class CDiscAdjFEAIteration : public CIteration { | |||
unsigned short val_iInst, | |||
unsigned short kind_recording); | |||
|
|||
/*! | |||
* \brief Record a single iteration of the direct mean flow system. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for keeping the doxy up to date.. double-check some of these comments though (should mean flow -> elasticity here?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep that's right, I missed these two. I'll update it.
} | ||
|
||
} else if (turbo) { | ||
if (turbo) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will the remaining capability from all other drivers (turbo, HB, etc) be absorbed into the primal and adjoint single/multizone drivers such that they can be removed eventually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the idea, to go towards a situation in which we only have Singlezone and Multizone Primal/Adjoint Drivers. The CFSIDriver will be removed in a subsequent PR (I didn't do it in this one as git was confused somehow) and the other drivers should also be removed and integrated into the new structures, which we should try to keep as constant as possible; but for that, we'd need some help from the community.
/*--- Specific scalar objective functions ---*/ | ||
|
||
switch (config->GetKind_Solver()) { | ||
case EULER: case NAVIER_STOKES: case RANS: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mention moving some items to the new output classes (I have seen this in the IO branch), but is it possible to move all of these switches and conditionals to the output too for holding the obj functions, such that one can simply call a virtual function in the base output class like output->SetObjFunc() here and not worry about the particular solver? We have discussed this before and maybe this is the longer term plan..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the idea is to create an intermediate class in charge of dealing with all these Postprocessing magnitudes, and return the ObjFunc required for each case. At this time I had to keep some if/switch statements at the driver, but our goal should be to reduce the number of them as much as possible and leverage on virtual functions. Some more work to come.
@@ -4069,65 +4069,6 @@ void CDriver::Output(unsigned long ExtIter) { | |||
|
|||
CDriver::~CDriver(void) {} | |||
|
|||
CGeneralDriver::CGeneralDriver(char* confFile, unsigned short val_nZone, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice clean up.. feels good to remove lines :).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It really does!
@@ -48,6 +48,9 @@ DISCARD_INFILES= NO | |||
% Speed = ft/s, Equiv. Area = ft^2 ) | |||
SYSTEM_MEASUREMENTS= SI | |||
|
|||
SINGLEZONE_DRIVER = YES |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this option required or will it be deduced automatically?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that right now it would not even be necessary for adjoint cases, but for primal cases it is still needed. I would keep it there until we have completed the transition to ITER, TIME_ITER, and SINGLEZONE_DRIVER becomes the default for all cases.
|
||
/*--- Set the dependencies of the iteration ---*/ | ||
|
||
iteration->SetDependencies(solver_container, geometry_container, numerics_container, config_container, ZONE_0, INST_0, kind_recording); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a request, can you break some of these lines? I find myself horizontal scrolling too many times, maybe 120 characters long?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, just limited the lines to 118 characters, which I think it's the limit of the github editor. Will push it in a bit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the comments, Tom! Individual replies below.
SU2_CFD/include/driver_structure.hpp
Outdated
CDiscAdjSinglezoneDriver(char* confFile, | ||
unsigned short val_nZone, | ||
unsigned short val_nDim, | ||
bool val_periodic, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I'll do that later today.I think it will need to be done also on the python scripts and so on.
@@ -1515,6 +1533,23 @@ class CDiscAdjFEAIteration : public CIteration { | |||
unsigned short val_iInst, | |||
unsigned short kind_recording); | |||
|
|||
/*! | |||
* \brief Record a single iteration of the direct mean flow system. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep that's right, I missed these two. I'll update it.
} | ||
|
||
} else if (turbo) { | ||
if (turbo) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the idea, to go towards a situation in which we only have Singlezone and Multizone Primal/Adjoint Drivers. The CFSIDriver will be removed in a subsequent PR (I didn't do it in this one as git was confused somehow) and the other drivers should also be removed and integrated into the new structures, which we should try to keep as constant as possible; but for that, we'd need some help from the community.
/*--- Specific scalar objective functions ---*/ | ||
|
||
switch (config->GetKind_Solver()) { | ||
case EULER: case NAVIER_STOKES: case RANS: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the idea is to create an intermediate class in charge of dealing with all these Postprocessing magnitudes, and return the ObjFunc required for each case. At this time I had to keep some if/switch statements at the driver, but our goal should be to reduce the number of them as much as possible and leverage on virtual functions. Some more work to come.
@@ -4069,65 +4069,6 @@ void CDriver::Output(unsigned long ExtIter) { | |||
|
|||
CDriver::~CDriver(void) {} | |||
|
|||
CGeneralDriver::CGeneralDriver(char* confFile, unsigned short val_nZone, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It really does!
@@ -48,6 +48,9 @@ DISCARD_INFILES= NO | |||
% Speed = ft/s, Equiv. Area = ft^2 ) | |||
SYSTEM_MEASUREMENTS= SI | |||
|
|||
SINGLEZONE_DRIVER = YES |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that right now it would not even be necessary for adjoint cases, but for primal cases it is still needed. I would keep it there until we have completed the transition to ITER, TIME_ITER, and SINGLEZONE_DRIVER becomes the default for all cases.
…_adjoint_single_zone
In general everything looks fine to me! I will do some smaller adjustments to this new driver for the new output structure soon (but in the other branch, not here). We can merge this in as long as there are no other comments. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for the changes. No more comments on my side.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Ruben, thanks for the effort. I have some (super) nitty-picky comments only except for the last one concerning the config_template.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @TobiKattmann,
thank you very much for the comments and for taking the time to go over the PR. I have just gone over the code and added the doxygen documentation and reformatting requested. This is very valuable to catch some comments that otherwise would stay on the code for long.
If there are no further comments to this PR, I will get it merged by tomorrow morning.
Best,
Ruben
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, I see you fixed some more comments than I found ;)
btw: I self-requested a review by accident and didn't know how to revert that but I wanted to approve anyway.
Proposed Changes
This PR goes in line with the driver reorganisation started in #585. At this time, it is the single-zone adjoint driver that is introduced, which inherits from the primal single-zone driver class. Problem properties are set at time of driver instantiation, and routines are mostly opaque to the physics (not yet completely as some further work is required in input/output). The functions are exposed to python so in a later PR the adjoint can also be used with the AD mode enabled. Some old driver classes are already removed.
Related Work
PR Checklist
Put an X by all that apply. You can fill this out after submitting the PR. If you have any questions, don't hesitate to ask! We want to help. These are a guide for you to know what the reviewers will be looking for in your contribution.