Custom Query (116 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (91 - 93 of 116)

Ticket Resolution Summary Owner Reporter
#72 fixed Crash when using a 2D grid made of 2 distributed axis rlacroix
Description

XIOS crashes when outputting a field defined on a 2D grid made of 2 distributed axis.

Further investigations show that the indexes used to extract the data received from the clients are completely wrong which causes a segmentation fault.

I am attaching a simple test case which can be used to reproduce the problem in attached mode. The code is pretty limited so it must be run on N processes with N a perfect square (for example N = 4 or N = 9).

#82 wontfix content operation doesn't accept constant rlacroix ymipsl
Description

This kind of operation

<field id="toto" > 1 </field> or

<field id="toto" > 1 + 1 </field>

Doesn't work and make an error when parsing field content or graph building sequence.

#88 duplicate Consistency check 'ni .le. ni_glo' unrelevant for data_dim=1 and curvilinear grid ymipsl ssenesi
Description

At node/domain.cpp l693, a test read as

      if (ni.getValue() < 0 || ibegin.getValue() < 0 )
	// || (ibegin.getValue() + ni.getValue()) > ni_glo.getValue())
      
        ERROR("CDomain::checkLocalIDomain(void)",
              << "[ id = " << this->getId() << " , context = '" << CObjectFactory::GetCurrentContextId() << " ] "
              << "The local domain is wrongly defined,"
              << " check the attributes 'ni_glo' (" << ni_glo.getValue() << "), 'ni' (" << ni.getValue() << ") and 'ibegin' (" << ibegin.getValue() << ")");

The third condition does not make sense in the case of data_dim=1 and grid types curvilinear and regular , as each task may handle up to ni_glo*nj_glo grid cells.

Note: See TracQuery for help on using queries.