libmesh icon indicating copy to clipboard operation
libmesh copied to clipboard

libMesh github repository

Results 222 libmesh issues
Sort by recently updated
recently updated
newest added

error: no matching function for call to ‘libMesh::Parallel::Communicator::broadcast(std::string&) const I use gcc 6.2 or 9.3 on the centos7 and the kernel is 3.10.0-957.el7.x86_64

I am curious about the best way to add dof indices to the send-list on each rank. I am currently using the [attach_extra_send_list_object](https://github.com/libMesh/libmesh/blob/99c716609d5d3052c85d2d4dbbceafd131aebf05/include/base/dof_map.h#L447) function to attach derived object of [AugmentSendList](https://github.com/libMesh/libmesh/blob/99c716609d5d3052c85d2d4dbbceafd131aebf05/include/base/dof_map.h#L205)....

So we've been through a lot of iterations with the thread-model logic, which is in good shape. What's missing is that when we have the OpenMP model active (really just...

We have a case where we're hitting the following assert https://github.com/libMesh/libmesh/blob/06410d04d134290b911558d1382b559220edfa57/src/mesh/unstructured_mesh.C#L79 in `UnstructuredMesh::copy_nodes_and_elements()` via a call to `ReplicatedMesh::stitch_meshes()` while running in parallel (np=4), because the mesh being "attached" in this...

Since extra element/node integers are part of the mesh, it is desirable to write them into files when the file format supports. With Exodus being an example, it does not...

This isn't documented at all in the script, and it would probably be more correct to use the output of ``` libmesh-config --cxx ``` instead of whatever is set (or...

rev. 746b489 asks this question: ``` mv /usr/ports/math/libmesh/work/stage/usr/local/bin/timpi-config.installed /usr/ports/math/libmesh/work/stage/usr/local/bin/timpi-config && chmod +x /usr/ports/math/libmesh/work/stage/usr/local/bin/timpi-config override r-xr-xr-x yuri/wheel for /usr/ports/math/libmesh/work/stage/usr/local/bin/timpi-config? (y/n [n]) ```

The libHilbert code has thousands of the following warnings: ``` ../../../../contrib/libHilbert/include/Hilbert/SetLocation.hpp:51:81: warning: this statement may fall through [-Wimplicit-fallthrough=] #define SETBIT p->racks()[ir]|=im; if ((*lr&jm)==0) p->racks()[ir]^=im; jm

Simply checking ``` if (ptype == AUTOMATIC) { if (n == n_local) this->_type = SERIAL; else this->_type = PARALLEL; } else this->_type = ptype; ``` is not a good idea...