Skip to content

Commit 9cc6d6c

Browse files
committed
Updated name/references to psij-python from psi-j-python.
1 parent fabcefb commit 9cc6d6c

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

QuickStart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Install psi-j from the github repository:
2121

2222
1. Clone repository into your working directory:
2323

24-
`git clone https://github.com/ExaWorks/psi-j-python.git`
24+
`git clone https://github.com/ExaWorks/psij-python.git`
2525

26-
2. `cd psi-j-python`
26+
2. `cd psij-python`
2727
3. `pip install .`
2828

2929

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
# Portable Submission Interface for Jobs
44

5-
PSI/J is an abstraction layer over cluster schedulers to write scheduler agnostic HPC applications. PSI/J automatically translates abstract job specifications into concrete scripts and commands to send to the scheduler. PSI/J is tested on a wide variety of clusters. For further information about [PSI/J](https://exaworks.org/job-api-spec/) or the [SDK](https://github.com/ExaWorks/SDK) visit the [ExaWorks](https://exaworks.org/) project page and read the [PSI/J documentation](https://exaworks.org/psi-j-python/#docs).
5+
PSI/J is an abstraction layer over cluster schedulers to write scheduler
6+
agnostic HPC applications. PSI/J automatically translates abstract job
7+
specifications into concrete scripts and commands to send to the
8+
scheduler. PSI/J is tested on a wide variety of clusters. For further
9+
information about [PSI/J](https://exaworks.org/job-api-spec/) or the
10+
[SDK](https://github.com/ExaWorks/SDK) visit the
11+
[ExaWorks](https://exaworks.org/) project page and read the [PSI/J
12+
documentation](https://exaworks.org/psij-python/#docs).
613

714

815
## Introduction

psij-ci-run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ else
5353
fi
5454

5555
# Ensure latest test runner is there
56-
git fetch https://github.com/ExaWorks/psi-j-python.git
56+
git fetch https://github.com/ExaWorks/psij-python.git
5757
git checkout FETCH_HEAD -- tests/ci_runner.py
5858

5959

scripts/WORKFLOW-EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ for j in [make_job(pdf2textSingularitySpec, None), make_job(text2wordcloudSingul
163163

164164
## Executing an MPI job
165165

166-
In this example we demonstrate how to wrap and execute an mpi hello world job with PSI/J. The base mpi command is `mpiexec -n 36 -ppn 36 echo Hello world`. This example is introducing the concept of a [job launcher](https://exaworks.org/psi-j-python/docs/programming.html#launchers), in this case **mpi**, e.g. `job.spec.launcher = "mpirun"`. The complete example script can be found [here](./).
166+
In this example we demonstrate how to wrap and execute an mpi hello world job with PSI/J. The base mpi command is `mpiexec -n 36 -ppn 36 echo Hello world`. This example is introducing the concept of a [job launcher](https://exaworks.org/psij-python/docs/programming.html#launchers), in this case **mpi**, e.g. `job.spec.launcher = "mpirun"`. The complete example script can be found [here](./).
167167

168168
1. Load psij module and instanciate job executer, e.g. local or slurm
169169

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
install_requires = f.readlines()
1010

1111
setup(
12-
name='psi-j-python',
12+
name='psij-python',
1313
version=VERSION,
1414

15-
description='''This is an implementation of the J/PSI (Portable Submission Interface for Jobs)
15+
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs)
1616
specification.''',
1717

1818
author='The ExaWorks Team',
1919
author_email='[email protected]',
2020

21-
url='https://github.com/exaworks/psi-j-python',
21+
url='https://github.com/exaworks/psij-python',
2222

2323
classifiers=[
2424
'Programming Language :: Python :: 3',

testing.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,4 @@ max_age = 48
174174
# and to retrieve the list of PRs and their comments.
175175
#
176176

177-
repository = ExaWorks/psi-j-python
177+
repository = ExaWorks/psij-python

0 commit comments

Comments
 (0)