tidy3d.web.api.container.Job#
- class Job[source]#
Bases:
WebContainerInterface for managing the running of a
Simulationon server.- Parameters:
attrs (dict = {}) β Dictionary storing arbitrary metadata for a Tidy3D object. This dictionary can be freely used by the user for storing data without affecting the operation of Tidy3D as it is not used internally. Note that, unlike regular Tidy3D fields,
attrsare mutable. For example, the following is allowed for setting anattrobj.attrs['foo'] = bar. Also note that Tidy3D` will raise aTypeErrorifattrscontain objects that can not be serialized. One can check ifattrsare serializable by callingobj.json().simulation (Union[Simulation, HeatChargeSimulation, HeatSimulation, EMESimulation, ModeSolver, ModeSimulation, VolumeMesher]) β Simulation to run as a βtaskβ.
task_name (str) β Unique name of the task.
folder_name (str = default) β Name of folder to store task on web UI.
callback_url (Optional[str] = None) β Http PUT url to receive simulation finish event. The body content is a json file with fields
{'id', 'status', 'name', 'workUnit', 'solverVersion'}.solver_version (Optional[str] = None) β Custom solver version to use, otherwise uses default for the current front end version.
verbose (bool = True) β Whether to print info messages and progressbars.
simulation_type (str = tidy3d) β Type of simulation, used internally only.
parent_tasks (Optional[Tuple[str, ...]] = None) β Tuple of parent task ids, used internally only.
task_id_cached (Optional[str] = None) β Optional field to specify
task_id. Only used as a workaround internally so thattask_idis written whenJob.to_file()and then the proper task is loaded fromJob.from_file(). We recommend leaving unset as setting this field along with fields that were not used to create the task will cause errors.reduce_simulation (Literal['auto', True, False] = auto) β Whether to reduce structures in the simulation to the simulation domain only. Note: currently only implemented for the mode solver.
pay_type (PayType = AUTO) β Specify the payment method.
Notes
This class provides a more convenient way to manage single simulations, mainly because it eliminates the need for keeping track of the
task_idand originalSimulation.We can get the cost estimate of running the task before actually running it. This prevents us from accidentally running large jobs that we set up by mistake. The estimated cost is the maximum cost corresponding to running all the time steps.
Another convenient thing about
Jobobjects is that they can be saved and loaded just like othertidy3dcomponents.Examples
Once youβve created a
jobobject usingtidy3d.web.api.container.Job, you can upload it to our servers with:tidy3d.web.upload(simulation, task_name="task_name", verbose=verbose)`
It will not run until you explicitly tell it to do so with:
tidy3d.web.api.webapi.start(job.task_id)
To monitor the simulationβs progress and wait for its completion, use
tidy3d.web.api.webapi.monitor(job.task_id, verbose=verbose)
After running the simulation, you can load the results using for example:
sim_data = tidy3d.web.api.webapi.load(job.task_id, path="out/simulation.hdf5", verbose=verbose)
The job container has a convenient method to save and load the results of a job that has already finished, without needing to know the task_id, as below:
# Saves the job metadata to a single file. job.to_file("data/job.json") # You can exit the session, break here, or continue in new session. # Load the job metadata from file. job_loaded = tidy3d.web.api.container.Job.from_file("data/job.json") # Download the data from the server and load it into a SimulationData object. sim_data = job_loaded.load(path="data/sim.hdf5")
See also
tidy3d.web.api.webapi.run_async()Submits a set of
Simulationobjects to server, starts running, monitors progress, downloads, and loads results as aBatchDataobject.BatchInterface for submitting several
Simulationobjects to sever.- Notebooks
Attributes
Methods
delete()Delete server-side data associated with
Job.download([path])Download results of simulation.
estimate_cost([verbose])Compute the maximum FlexCredit charge for a given
Job.get_info()Return information about a
Job.Return information about the running
Job.load([path])Download job results and load them into a data object.
monitor()Monitor progress of running
Job.real_cost([verbose])Get the billed cost for the task associated with this job.
run([path])Run
Joball the way through and return data.start()Start running a
Job.to_file(fname)Exports
Tidy3dBaseModelinstance to .yaml, .json, or .hdf5 fileupload()Upload this
Job.Inherited Common Usage
- simulation#
- task_name#
- folder_name#
- callback_url#
- solver_version#
- verbose#
- simulation_type#
- parent_tasks#
- task_id_cached#
- reduce_simulation#
- pay_type#
- to_file(fname)[source]#
Exports
Tidy3dBaseModelinstance to .yaml, .json, or .hdf5 file- Parameters:
fname (str) β Full path to the .yaml or .json file to save the
Tidy3dBaseModelto.
Example
>>> simulation.to_file(fname='folder/sim.json')
- run(path='simulation_data.hdf5')[source]#
Run
Joball the way through and return data.- Parameters:
path_dir (str = "./simulation_data.hdf5") β Base directory where data will be downloaded, by default current working directory.
- Returns:
Object containing simulation results.
- Return type:
Union[
SimulationData,HeatSimulationData,EMESimulationData]
- property task_id#
The task ID for this
Job. Uploads theJobif it hasnβt already been uploaded.
- get_info()[source]#
Return information about a
Job.- Returns:
TaskInfoobject containing info about status, size, credits of task and others.- Return type:
TaskInfo
- start()[source]#
Start running a
Job.Note
To monitor progress of the
Job, callJob.monitor()after started.
- get_run_info()[source]#
Return information about the running
Job.- Returns:
Task run information.
- Return type:
RunInfo
- monitor()[source]#
Monitor progress of running
Job.Note
To load the output of completed simulation into
SimulationDataobjects, callJob.load().
- download(path='simulation_data.hdf5')[source]#
Download results of simulation.
- Parameters:
path (str = "./simulation_data.hdf5") β Path to download data as
.hdf5file (including filename).
Note
To load the data after download, use
Job.load().
- load(path='simulation_data.hdf5')[source]#
Download job results and load them into a data object.
- Parameters:
path (str = "./simulation_data.hdf5") β Path to download data as
.hdf5file (including filename).- Returns:
Object containing simulation results.
- Return type:
Union[
SimulationData,HeatSimulationData,EMESimulationData]
- real_cost(verbose=True)[source]#
Get the billed cost for the task associated with this job.
- Parameters:
verbose (bool = True) β Whether to log the cost and helpful messages.
- Returns:
Billed cost of the task in FlexCredits.
- Return type:
float
- estimate_cost(verbose=True)[source]#
Compute the maximum FlexCredit charge for a given
Job.- Parameters:
verbose (bool = True) β Whether to log the cost and helpful messages.
- Returns:
Estimated cost of the task in FlexCredits.
- Return type:
float
Note
Cost is calculated assuming the simulation runs for the full
run_time. If early shut-off is triggered, the cost is adjusted proportionately.
- __hash__()#
Hash method.