Brandon Bocklund
Brandon Bocklund
``` TRACE:espei.espei_script - Loading and checking datasets. TRACE:espei.espei_script - Finished checking datasets ``` After these steps the dask server usually starts. Maybe your desk server is not starting correctly. Can...
Can you check that turning off the scheduler works first? I want to make sure everything else is working correctly first. https://espei.org/en/latest/writing_input.html#scheduler
> According to the solution you provided, MCMC has started to run normally. Great, so it looks like starting dask for parallelization was indeed the issue. > May I ask...
ESPEI basically starts a dask cluster this way: ```python import multiprocessing from dask.distributed import LocalCluster, Client cores = multiprocessing.cpu_count() cluster = LocalCluster(n_workers=cores, threads_per_worker=1, processes=True, memory_limit=0) client = Client(cluster) print(client.scheduler_info()) ```...
Hi @HUISUN24, thanks for putting this together! It looks like it will be very useful. A few high level questions: 1. Does the way you have the dataset set up...
@HUISUN24 this PR almost certainly outdated now with the changes in #236. The good news is that if you model your code in `Y_error` after the other error function code,...
This PR is pretty stale and probably could be implemented differently today by adding support to the existing thermochemical error residual now that pycalphad Workspace provides better support for `wks.get(output)`....
It would also be nice if the probability and trace are bundled into whatever blob/format stores this information, so that restarts could be just pointing to the blob and the...
I have a local branch that is more Workspace-oriented that I'm behind on testing and pushing up to merge. Would it be enough if you could provide a list of...
I think being able to rely on the property framework features would a better experience and give more flexibility, but I'm open to also storing the equilibrium xarray Datasets if...