You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have two nodes A and B and they have different parameter sets but with some overlap do I need to have two separate yaml files and thus two generate_parameter_library calls in my CMakeLists.txt?
The text was updated successfully, but these errors were encountered:
If you don't care that you add the additional unused parameters for the other node respectively, you can just generate one parameter library and link it to both executables.
Otherwise, you need to generate two libraries but can't share the common parameters. To do so, you need three libraries (node A, node B, common) and link the common one to both nodes.
If I have two nodes
A
andB
and they have different parameter sets but with some overlap do I need to have two separate yaml files and thus twogenerate_parameter_library
calls in myCMakeLists.txt
?The text was updated successfully, but these errors were encountered: