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

New singlezone discrete adjoint driver #671

Merged
merged 42 commits into from
May 29, 2019
Merged

Conversation

rsanfer
Copy link
Contributor

@rsanfer rsanfer commented Apr 23, 2019

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

  • Further work by @oleburghardt to follow on the multizone adjoint driver.
  • Some features awaiting the input/output restructuring PR by @talbring.

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.

  • I am submitting my contribution to the develop branch.
  • My contribution generates no new compiler warnings (try with the '-Wall -Wextra -Wno-unused-parameter -Wno-empty-body' compiler flags).
  • My contribution is commented and consistent with SU2 style.
  • I have added a test case that demonstrates my contribution, if necessary.

rsanfer added 30 commits April 4, 2019 11:22
Copy link
Member

@pcarruscag pcarruscag left a 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
Copy link
Member

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?

Copy link
Contributor Author

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);
Copy link
Member

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.

Copy link
Contributor Author

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.

Copy link
Contributor Author

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.

Copy link
Member

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.

Copy link
Member

@economon economon left a 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.

CDiscAdjSinglezoneDriver(char* confFile,
unsigned short val_nZone,
unsigned short val_nDim,
bool val_periodic,
Copy link
Member

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.

Copy link
Contributor Author

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.
Copy link
Member

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?)

Copy link
Contributor Author

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) {
Copy link
Member

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?

Copy link
Contributor Author

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:
Copy link
Member

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..

Copy link
Contributor Author

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,
Copy link
Member

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 :).

Copy link
Contributor Author

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
Copy link
Member

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?

Copy link
Contributor Author

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);
Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Contributor Author

@rsanfer rsanfer left a 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.

CDiscAdjSinglezoneDriver(char* confFile,
unsigned short val_nZone,
unsigned short val_nDim,
bool val_periodic,
Copy link
Contributor Author

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.
Copy link
Contributor Author

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) {
Copy link
Contributor Author

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:
Copy link
Contributor Author

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,
Copy link
Contributor Author

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
Copy link
Contributor Author

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.

@talbring
Copy link
Member

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.

Copy link
Member

@pcarruscag pcarruscag left a 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.

Copy link
Contributor

@TobiKattmann TobiKattmann left a 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.

Copy link
Contributor Author

@rsanfer rsanfer left a 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

@TobiKattmann TobiKattmann self-requested a review May 28, 2019 13:25
Copy link
Contributor

@TobiKattmann TobiKattmann left a 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.

@rsanfer rsanfer merged commit 76fee99 into develop May 29, 2019
@rsanfer rsanfer deleted the feature_adjoint_single_zone branch September 17, 2019 14:02
@talbring talbring changed the title Single-zone adjoint driver New singlezone discrete adjoint driver Nov 8, 2019
@pr-triage pr-triage bot added the PR: merged label Nov 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants