Custom Query (116 matches)
Results (100 - 102 of 116)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#169 | fixed | Field with attribute "once" is not correctly showed in workflow graphe | yushan | yushan |
#63 | invalid | Complementing field definition by sourcing from an alternate file does not work | ymipsl | ssenesi |
Description |
When wanting to add some field definition by sourcing an alternate file, you should be able to write : <field_definition> <field id="default_field"domain_ref="FULL"></field_definition> <field_definition id="field_definition" src="./surfex_base.xml" /> where the content of surfex_base.xml is e.g. : <field_definition > <field id="LE" name="leprime" /> </field_definition> This crashes XIOS with "MPI_ERR_COMM: invalid communicator" (while putting the equivalent content at the same place in the master xml file works fine) |
|||
#89 | invalid | Error in node/domain.cpp on ChecKDomainData | ymipsl | ssenesi |
Description |
It reads on line 792 as if (data_ni.isEmpty()) { data_ni.setValue((data_dim == 1) ? (ni.getValue() * nj.getValue()) : ni.getValue()); } which is obviously wrong (set values should be reversed). This actually causes segmentation violation when nj is not set and data_dim==1; and this should lead to underestimated allocation when data_dim==2 |