You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,6 @@
2
2
3
3
Xboinc is a package within the Xsuite project that provides tools for easily submit and manage tracking jobs on the BOINC computing platform. It is designed to streamline the process of job submission, management, and monitoring for users of the Xsuite framework in need for large-scale computing resources, with a project adaptable to volunteer-based computing. Note that the services provided by this package are available only to CERN users with a valid computing account.
4
4
5
-
**NOTE: CURRENTLY, ONLY THE DEVELOPMENT SERVER IS AVAILABLE! Be sure to always set the `dev_server` parameter to `True` when using the package!**
6
-
7
5
# How to use Xboinc
8
6
9
7
## Install Xboinc
@@ -81,7 +79,7 @@ job_manager = xb.JobSubmitter(
81
79
user="mycernshortname",
82
80
study_name="a_relevant_study_name",
83
81
line=line,
84
-
dev_server=True#currently, the dev server is the only one available
82
+
dev_server=False,#set to True to use the Xboinc development server (for testing purposes only), by default False
85
83
)
86
84
87
85
# prepare a big batch of particles
@@ -114,7 +112,7 @@ When the jobs are completed, the Xboinc server will store the results in your al
114
112
```python
115
113
import xboinc as xb
116
114
117
-
for job_name, job_metadata, result_particles in xb.JobRetriever.iterate("mycernshortname", "a_relevant_study_name", dev_server=True):
115
+
for job_name, job_metadata, result_particles in xb.JobRetriever.iterate("mycernshortname", "a_relevant_study_name"):
118
116
print(f"Job {job_name} completed with particles: {result_particles.to_dict()}")
0 commit comments