Jordi Manyer Fuertes
Jordi Manyer Fuertes
This adds features to our automatic differentiation (AD) to give support to - distributed AD - parametric AD
Hello all, Currently there are two (in my opinion conflictive) implementations of `get_cell_map`: ``` get_cell_map(g::UnstructuredGrid) = g.cell_map ``` and ```julia function get_cell_map(trian::Grid) cell_to_coords = get_cell_coordinates(trian) cell_to_shapefuns = get_cell_shapefuns(trian) lazy_map(linear_combination,cell_to_coords,cell_to_shapefuns) end...
Not very important, but `compute_face_nodes` fails for `CartesianDiscreteModels`. Code to reproduce: ```julia D = 2 domain = Tuple(repeat([0,1],D)) cmodel = CartesianDiscreteModel(domain,Tuple(fill(2,D))) compute_face_nodes(cmodel) ``` Error: ```julia julia> compute_face_nodes(cmodel) ERROR: MethodError: no...
Hello all, I have added a very simple test in branch [bugfix-inverse-maps](https://github.com/gridap/Gridap.jl/tree/bugfix-inverse-maps) that showcases a problem I've found when inverting cell_maps from models with linear geometries. Without considering that the...
Hi all, I am a developer for [GridapPETSc.jl](https://github.com/gridap/GridapPETSc.jl), a package bridging `PETSc_jll` for the Gridap ecosystem. While doing some non-related maintenance, we noticed our tests stopped working for `PETSC_jll` versions...
@fverdugo I think I found some issues for `PermutedLocalIndices`. See the MWE: ```julia using PartitionedArrays ranks = with_debug() do distribute distribute(LinearIndices((2,))) end indices = map(ranks) do r n_global = 4...
Hi @fverdugo, I think there is a functionality missing that could be useful in some cases. Again, I might be missing something but I haven't found an elegant way of...
I believe the method `find_owner` is missing for the structure `LocalIndices`. Is this correct, or am I missing something?
Hi all, I believe block-wise linear algebra operations such as `dot` default to the implementation for `AbstractArray` instead of doing the operation block by block and then adding the results....