This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Script to transfer data from Juelich Supercomputing Center to HZDR. | |
| # Call with | |
| # > screen # open a screen session first to be able to logout from the | |
| # # data mover system | |
| # > exec ssh-agent bash # prepare shell to add ssh key passphrase to ssh-agent | |
| # # in order to not type it all the time | |
| # > ssh-add ~/.ssh/id_ed25519 # add ssh key passphrase to ssh-agent | |
| # > xargs -a dirs.list -n 1 -P 5 ~/bin/data-transfer_judac.sh | tee transfer.out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Authors: Axel Huebl, Marco Garten, Klaus Steiniger, Anton Lebedev | |
| # | |
| # last updated: 2022-06-13 | |
| PIC_BRANCH="dev" | |
| # get PIConGPU profile | |
| if [ ! -f "$PIC_PROFILE" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use at your own risk! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Authors: Axel Huebl, Marco Garten, Klaus Steiniger | |
| # | |
| # last updated: 2019-05-13 | |
| # | |
| # execute: | |
| # wget -O - https://gist.githubusercontent.com/ax3l/68cb4caa597df3def9b01640959ea56b/raw/PIConGPU_040-dev_PizDaint.sh | bash | |
| PIC_BRANCH="dev" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from IPython.display import display, HTML | |
| display(HTML(data=""" | |
| <style> | |
| div#notebook-container { width: 95%; } | |
| div#menubar-container { width: 65%; } | |
| div#maintoolbar-container { width: 99%; } | |
| </style> | |
| """)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| MIT License | |
| Copyright (c) 2017 Cyrille Rossant | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |