Skip to content

Commit

Permalink
Merge of PR #7337
Browse files Browse the repository at this point in the history
  • Loading branch information
robnagler committed Nov 5, 2024
1 parent cadc5a2 commit ac1b1b3
Show file tree
Hide file tree
Showing 12 changed files with 359 additions and 249 deletions.
2 changes: 2 additions & 0 deletions etc/schema-import/elegant/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Run:
sirepo elegant-schema parse-manual
186 changes: 0 additions & 186 deletions etc/schema-import/elegant/update-schema-from-manual.py

This file was deleted.

6 changes: 5 additions & 1 deletion sirepo/const.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# -*- coding: utf-8 -*-
"""Constant values
:copyright: Copyright (c) 2021 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

import asyncio
from pykern.pkcollections import PKDict
import pykern.pkio

ASYNC_CANCELED_ERROR = asyncio.CancelledError

Expand Down Expand Up @@ -53,3 +54,6 @@
SRUNIT_USER_AGENT = "srunit/1.0"

TEST_PORT_RANGE = range(10000, 11000)

#: hardwired root of development src tree
DEV_SRC_RADIASOFT_DIR = pykern.pkio.py_path("~/src/radiasoft/")
6 changes: 3 additions & 3 deletions sirepo/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
OP_RUN = "run"
OP_SBATCH_AGENT_READY = "sbatch_agent_ready"
OP_SBATCH_LOGIN = "sbatch_login"
OP_VERIFY_STATUS = "verify_status"
OP_BEGIN_SESSION = "begin_session"


#: Types of slots required by op types
CPU_SLOT_OPS = frozenset((OP_ANALYSIS, OP_RUN))
SLOT_OPS = frozenset().union(*[CPU_SLOT_OPS, (OP_IO,)])

#: All ops that have slots (see job_driver.DriverBase._slots_ready)
SLOT_OPS = frozenset().union(*[CPU_SLOT_OPS, (OP_IO, OP_VERIFY_STATUS)])

_OK_REPLY = PKDict(state="ok")

Expand Down
4 changes: 2 additions & 2 deletions sirepo/job_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,11 +395,11 @@ async def _alloc_check(alloc, msg):
if n == job.OP_SBATCH_LOGIN:
return res
await _alloc_check(
op.op_slot.alloc, "Waiting for another simulation to complete await=op_slot"
op.op_slot.alloc, "Waiting for another sim op to complete await=op_slot"
)
await _alloc_check(
op.run_dir_slot.alloc,
"Waiting for access to simulation state await=run_dir_slot",
"Waiting for access to sim state await=run_dir_slot",
)
if n not in job.CPU_SLOT_OPS:
return res
Expand Down
15 changes: 9 additions & 6 deletions sirepo/job_driver/sbatch.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# -*- coding: utf-8 -*-
"""TODO(e-carlin): Doc
:copyright: Copyright (c) 2019 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""
from __future__ import absolute_import, division, print_function

from pykern import pkconfig
from pykern import pkio
from pykern import pkjson
Expand All @@ -16,6 +15,7 @@
import asyncssh
import datetime
import errno
import sirepo.const
import sirepo.job_supervisor
import sirepo.simulation_db
import sirepo.util
Expand Down Expand Up @@ -232,10 +232,13 @@ def _agent_start_dev(self):
scancel -u $USER >& /dev/null || true
"""
if self.cfg.shifter_image:
res += """
(cd ~/src/radiasoft/sirepo && git pull -q) || true
(cd ~/src/radiasoft/pykern && git pull -q) || true
"""
res += (
"\n".join(
f"(cd {sirepo.const.DEV_SRC_RADIASOFT_DIR.join(p)} && git pull -q || true)"
for p in ("pykern", "sirepo")
)
+ "\n"
)
return res

def _raise_sbatch_login_srexception(self, reason, msg):
Expand Down
Loading

0 comments on commit ac1b1b3

Please sign in to comment.