Skip to content

Commit

Permalink
Fix reading errors from cupSODA (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
alubbock committed Oct 19, 2020
1 parent 605b2f4 commit c434f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysb/simulator/cupsoda.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def _run_chunk(self, gpus, outdir, chunk_idx, cmtx, sims, trajectories,
if p[gpu].returncode:
raise SimulatorException(
"cupSODA GPU {} chunk {} exception:\n{}\n{}".format(
gpu, chunk_idx, p_out.rstip("at line"), p_err.rstrip()
gpu, chunk_idx, p_out.rstrip("at line"), p_err.rstrip()
)
)
tout_run, trajectories_run = self._load_trajectories(
Expand Down

0 comments on commit c434f6a

Please sign in to comment.