Work Plan In Memory Adapt

From PHASTA Wiki
Jump to: navigation, search

Summary of Phases

  • phase0 wrapper layer that supports both syncio and posix - done 7/20/2015
  • phase1 PHASTA can read AND write both - done 7/22/2015
  • phase2 PHASTA runs after chef though an in-memory read of Chef's written in-memory data - done
  • phase3 PHASTA writes its field back to chef and lets chef do a UR on its mesh and transfers fields - done
  • phase4 bring that result back to phasta (so chef->PHASTA->chef-UR->PHASTA-UR) - done
  • phase5 replace UR with local adaptation - done
  • phase6 loop and we are done - done

phastaIO

For the sake of discussion lets group phastaIO functions as follows

init
open-close
read  (readheader, readdatablock)
write  (writeheader, writedatablock)
initalize

To make the interface more simple, I propose, we push init into open and finalize into close. Furthermore I propose that we consider a wrapper layer approach where the functions that the PHASTA workflow directly uses to perform IO are:

  • phio_openfile_[read|write] (in addition to specializing filename string for particular library, this function can call queryphmpiio and initphmpiio in the case of syncio)
  • phio_readheader
  • phio_readdatablock
  • phio_writeheader
  • phio_writedatablock
  • phio_closefile_[read|write]

These functions will be called by readnblk (and a few others) for reading and Write_restart (and a few clones) for writing. Principally, these eight functions will be wrappers that take in partial strings and the usual arguments for their PhastaIO functions and then perform the necessary string specializations for the particular flavor of PhastaIO being used (e.g,, syncio or posix) before then ultimately calling the PhastaIO function (that already has a branching based on the two flavors). Cameron has proposed housing those seven wrappers in phIO.cc which seems fine to me. Helper functions can go in the same file.

Initially, setIOparam() counting of syncio files will be used to determine if sync or posix files will be used. If the count is zero then assume posix. Use the count as a switch for file format everywhere (can be replaced later by agreed upon flag for file format...candidates: iotype= binary-posix, binary-mpiio instead of binary (not sure we want to preserve ascii unless it easy to do)

Detailed Description of Phases

  1. phase0
    1. Move field string construction into phio layer - hardcoded in phasta - see https://github.com/cwsmith/phastaChef/issues/17
    2. Move file name construction into - done
    3. Move query and init into phio_opefile_* - done
    4. Migrating all of PHASTA to use wrapper apis - done
  2. phase1
    1. Migrate string constructors into conditional for syncio - done
    2. Create posix counterparts and put them in the posix branch of conditional - done
    3. Debug to be sure that at least all tet meshes can be read with both posix/syncio - done
    4. Debug to make sure that files written are correct (two successive runs) - done
  3. phase2
    1. Create ability for Chef to write to memory location using posixIO pointed at a memory location instead of a file - done
    2. Create ability to pass the descriptor of that memory location to PHASTA (I think it is safe to assume that since we are one “file” per part in both Chef and PHASTA that this is just the starting location of where Chef started writing) - done
    3. Create ability to have phasta initialize itself with posix-based PHASTAIO reads from this in-memory file/state that Chef wrote - done
  4. phase3
    1. Create ability for PHASTA to write adapt-fields (solution, d2wall, error, ybar) using posix-based PHASTAIO writes to a memory location - done
    2. Create ability to pass the descriptor of that memory location back to Chef - done
    3. Create ability for Chef to read adapt-fields when passed descriptor - done
    4. Invoke a UR with solution transfer and write files to confirm phase3 success - done
  5. phase4
    1. Should be trivial but have Chef write result of UR to a new memory location and pass descriptor to PHASTA to read and run again (comparing to file based version of the same which we are already doing at scale) - done
  6. phase5
    1. Demonstrate that we can do file based local adaptive refinement with Chef (I will let Dan and Cameron described the subtask developments here but am more than happy to help plan and assist in any way I can because we really need this capability…I am fine with ignoring/freezing boundary layers to get a working case going before taking on that much tougher nut). - done

Thorny Issues

  1. phase0
    1. extra write files. Seems to me that there should be either
      1. only 2 write_restart and write_field, or
      2. an init function and then only write_field
    2. dwall currently has two modes (in restart or in a separate file….do we really need to preserve this)
    3. usr.c opens restart to read saved projection vectors. Not a problem per se but might be better to read this while we have the restart already open so that the IO code is more compact. This may involve moving more leslib stuff forward in the code
    4. KEJ is still trying to sort out the roles of {query,init}phmpiio.
      1. query is called before file is read the first time (same file read again can get by without it e.g., readlesprojection reads restart a second time)
      2. init is called for both reads and writes of syncio files