Skip to content

Commit bf7ef8f

Browse files
Devin-Crawfordpre-commit-ci[bot]SMoraisAnsyspyansys-ci-botSamuelopez-ansys
authored
FEAT: Add submit job class (#6331)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Sébastien Morais <[email protected]> Co-authored-by: pyansys-ci-bot <[email protected]> Co-authored-by: Sébastien Morais <[email protected]> Co-authored-by: Samuel Lopez <[email protected]>
1 parent c62efd7 commit bf7ef8f

File tree

11 files changed

+1330
-16
lines changed

11 files changed

+1330
-16
lines changed

doc/changelog.d/6331.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add submit job class
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Submit job class
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Scheduler logic
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Scheduler logic

doc/source/Resources/pyaedt_settings.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ log:
4747
# Settings related to Linux systems running LSF scheduler
4848
lsf:
4949
# Command to launch in the LSF Scheduler
50-
custom_lsf_command: null
50+
custom_lsf_command: ''
5151
# Command to launch the task in the LSF Scheduler
5252
lsf_aedt_command: 'ansysedt'
5353
# Number of LSF cores
54-
lsf_num_cores: 2
54+
lsf_num_cores: 4
5555
# Operating system string
5656
lsf_osrel: null
5757
# LSF queue name

src/ansys/aedt/core/desktop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1652,7 +1652,7 @@ def submit_job(
16521652
return False
16531653
else:
16541654
if not Path(aedt_full_exe_path).exists():
1655-
self.logger.warning("The AEDT executable path not visible from the client.")
1655+
self.logger.warning("The AEDT executable path is not visible from the client.")
16561656
aedt_full_exe_path.replace("\\", "\\\\")
16571657
if project_name in self.project_list():
16581658
self.odesktop.CloseProject(project_name)

0 commit comments

Comments
 (0)