Dear developers,
I modified both parallel_sort.h and parallel_sort.C by using dof_id_type,
the code successfully compiled, but it still stuck at the line
Parallel::Sort sorter (communicator,
sorted_hilbert_keys);
Now I disable the libHilbert, it works through anyway.
May I know the largest paral
On Thu, 31 Jan 2019, Li Luo wrote:
> I changed from "typename IdxType=unsigned int" to "typename
> IdxType=dof_id_type" in parallel_sort.h (libmesh_dir/include/parallel/), and
> then
> reconfigure and make. Errors occur as follows:
Ah, I forgot, you'd also need to change (or add new) instanti
Thank you for your reply!
I changed from "typename IdxType=unsigned int" to "typename
IdxType=dof_id_type" in parallel_sort.h (libmesh_dir/include/parallel/),
and then reconfigure and make. Errors occur as follows:
...
CXXLDlibmesh_opt.la
CXX src/apps/getpot_parse_opt-getpot_parse.o
On Wed, Jan 30, 2019 at 11:08 AM Stogner, Roy H
wrote:
>
> On Wed, 30 Jan 2019, Li Luo wrote:
>
> > I am using libMesh for large scale parallelization. To enable the usage
> of
> > 65536 processor cores, the options
> > --with-dof-id-bytes=8 --with-processor-id-bytes=4
> > --with-subdomain-id-byt
On Wed, 30 Jan 2019, Li Luo wrote:
> I am using libMesh for large scale parallelization. To enable the usage of
> 65536 processor cores, the options
> --with-dof-id-bytes=8 --with-processor-id-bytes=4
> --with-subdomain-id-bytes=4
> are already used for configuration.
>
> However, the code 'stic
Dear developers,
I am using libMesh for large scale parallelization. To enable the usage of
65536 processor cores, the options
--with-dof-id-bytes=8 --with-processor-id-bytes=4
--with-subdomain-id-bytes=4
are already used for configuration.
However, the code 'sticks' in the following fuction:
Par