Results 126 issues of Justin Privitera

This is under consideration.

feature

Conduit Node diff allows for relaxing int comparisons (int64 vs int32 for example), but only in the C++ API. We should add this option to the Python API and explore...

feature

Node diff lets you relax comparisons on int types, and compares them by value. We should be able to relax all types, not just ints, and add this functionality to...

feature

It would be nice if it were possible to do this `data.has_path("topologies/*/type")` to see if any topologies have a child "type".

feature

https://github.com/visit-dav/visit/issues/18954

If we allowed writing to `data_accessor`s (if they could update values regardless of underlying type), we could reduce need for templating and make writing just as easy as reading with...

feature

If you do the following: ``` MPI_Comm comm = MPI_COMM_WORLD; int par_rank = mpi::rank(comm); int par_size = mpi::size(comm); Node n; relay::mpi::io::blueprint::save_mesh(n, "example_blueprint", comm); // or: // relay::mpi::io::silo::save_mesh(n, "example_silo", comm); ```...

bug

It would be good to get these tables into the Blueprint docs. Supported in Blueprint Verify: Supported |   |   |   -- | -- | -- | -- TOPO/COORDS | uniform...

docs

These (and other?) node printing options should be documented for easy reference. ``` opts = Node() opts["num_children_threshold"] = 2 opts["num_elements_threshold"] = 3 r = n.to_summary_string(opts) print(r) ```

docs

Add units and labels for fields and meshes.