Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update HPC page #173

Merged
merged 3 commits into from
Nov 5, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ We highly recommend using the [Juliaup](https://github.com/JuliaLang/juliaup) ma
!!! note
To clone the FUSE repository you will need to [setup your public key on git GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)

!!! note
if you are installing from an old install and the package update isn't able to resolve itself feel free to remove every folder except the dev folder in your .julia folder
orso82 marked this conversation as resolved.
Show resolved Hide resolved

!!! tip
1. Add FUSE and its dependencies to the julia environment (this may take a few minutes):

```bash
Expand Down Expand Up @@ -55,4 +59,4 @@ We highly recommend using the [Juliaup](https://github.com/JuliaLang/juliaup) ma

```bash
jupyter-lab
```
```
8 changes: 7 additions & 1 deletion docs/src/parallel.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ addprocs(SlurmManager(np-nprocs()+1), partition="preemptable", ntasks_per_core=1
## Parallel Jupyter on Saga cluster

On `cybele` via NoMachine connect to `saga`

```
jupyter lab --no-browser --port 55667
```

On your computer setup your `~/.ssh.config` this way:
Copy the token that you see on this session it should look something like ```token=1f1e0259cbc1..................```


On your computer setup your `~/.ssh/config` this way:
```
Host cybele cybele.gat.com
Hostname cybele.gat.com
Expand All @@ -36,6 +40,8 @@ and start a tunnel going through `cybele` to `saga` (keep this open)
ssh -N -L localhost:33445:localhost:55667 sagae
```

Use the token that you coppied from your nomachine session and use it in the http://localhost:33445 login page

Now, on your computer open a web browser tab to `localhost:33445` to connect to the Jupyter-lab session on `saga`.

And finally, in this interactive Jupyter-lab one can use `saga` nodes with:
Expand Down