Robert Carson

Results 60 comments of Robert Carson

@jameshcorbett so I just tested with a GPU enabled job as I'm preparing for the large scale job. For these jobs, I'm just running 1 CPU and 1 GPU per...

@grondo unfortunately `flux pstree` isn't available on y'all's Summit install of flux as that version is only 0.29.0 and it looks like that feature wasn't added until 0.34.0. I've also...

> Ah, yes, I apologize for the age the Flux install on Summit. Lassen does have a newer version, though we've noticed that the system installation of Flux there (/usr/bin/flux)...

@grondo it appears that the nested flux instances was the issue here. I swapped things over to ```python jobspec = flux.job.JobspecV1.from_command( [problem.bin_mechanics, "-opt", "options.toml"], num_nodes=problem.nnodes, num_tasks=problem.ncpus, cores_per_task=1, gpus_per_task=ngpus ) ```...

@robinson96 thanks for the quick response. I was unaware about the lambda capture by value requirement for the internal data transfer portion of things to work. The same goes about...

> I'm wondering what these additions bring to the table. Can't I just loop over boundary attributes separately with the existing `FiniteElementSpace::GetEssentialTrueDofs` and 3 more lines of code instead of...

> I'm not convinced that a new interface is needed. I achieve this in Laghos in very few lines: ```c++ Array ess_tdofs, ess_bdr(pmesh->bdr_attributes.Max()), dofs_list; for (int d = 0; d...

@vladotomov , @jandrej , @mlstowell , and @pazner I believe this should be good to review again. I believe I've addressed the earlier reviewer comments by eliminating the code duplication...

I'm guessing due to how `BilinearForm` and `LinearForm` it wouldn't be possible to emulate how the `NonlinearForm` handles BCs? https://github.com/mfem/mfem/blob/7e8d8b1d55adecfb46f971300f820bd7e48bdc67/fem/nonlinearform.cpp#L152-L165 https://github.com/mfem/mfem/blob/7e8d8b1d55adecfb46f971300f820bd7e48bdc67/fem/pnonlinearform.cpp#L89-L94 It's been quite sometime since I looked at how...

@joshessman-llnl so I would say the vdim info could be fed into a QF initialization using this same naming scheme. It would be able to parse the name: 1. See...