Hi,

I'm trying to implement multithreading for a fluid-solid interaction
problem (and thus I used hp mode). I used workstream for CPU acceleration
and the code is below:








*WorkStream::run(dof_handler.begin_active(),
dof_handler.end(),                    *this,
&ElasticWaveEquation::local_assemble_system,
&ElasticWaveEquation::copy_local_to_global,
AssemblyBlockScratchData(fe_collection, q_collection, solid_fe, liquid_fe,
time_step, lambda, mu, rho, mesh_size, N_mesh),
AssemblyBlockCopyData());*

However, it looks like the function does not support hp iterators. The
error is:

 *deduced conflicting types for parameter ‘const Iterator’
(‘dealii::TriaActiveIterator<dealii::DoFCellAccessor<dealii::hp::DoFHandler<2,
2>, false> >’ and ‘dealii::DoFHandler<2>::active_cell_iterator’ {aka
‘dealii::TriaActiveIterator<dealii::DoFCellAccessor<dealii::DoFHandler<2>,
false> >’})*

Is there any workaround for this problem? Thank you!

Regards,
Elyn

-- 
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dealii/CAMNE2Eo482guk93WUDF5Myt7iUQ4bCO8Z0GuOFf1-r_CZ5n0Sw%40mail.gmail.com.

Reply via email to