| Action | Shortcut |
|---|---|
| Scroll line up | ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS) |
| Scroll line down | ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS) |
| Scroll page up | ctrl+shift+page_up (also ⌘+⇞ on macOS) |
| Scroll page down | ctrl+shift+page_down (also ⌘+⇟ on macOS) |
Check resources available on Swing: NVIDIA A100 GPUs (8 GPUs per node) - 1/8 node allocated when requesting 1 gpu
MACE requires Pytorch2, which needs CUDA 11.8 or 11.7. Check required CUDA versions here
Create a Conda environment with Python 3.10
conda create -n "CUDA-torch-base" python=3.10.0
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
| &CONTROL | |
| prefix = 'C_bulk_pbe' | |
| calculation = 'vc-relax' | |
| verbosity = 'high' | |
| tstress=.true. | |
| pseudo_dir = '/lus/eagle/projects/catalysis_aesp/raymundohe/espresso/pseudo', | |
| forc_conv_thr = 1e-4, | |
| / | |
| &SYSTEM |
CALISHOT is a specialised search engine to unearth books on open calibre servers.
It allows you to search ebooks in full text across them or to browse the database by facets: authors, language, year, series, tags ... You can even run your own queries in SQL.
These servers are often up and down so, for now, the data are regularly updated and new snasphots are posted on ...
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 | |
| # Taken from: https://red-full-moon.com/make-hevc-qsv-env-first-half/ | |
| # 環境の最新化 | |
| sudo apt update | |
| sudo apt dist-upgrade | |
| # 必要パッケージのインストール | |
| sudo apt install cmake make autoconf automake libtool g++ bison libpcre3-dev pkg-config libtool libdrm-dev xorg xorg-dev openbox libx11-dev libgl1-mesa-glx libgl1-mesa-dev libpciaccess-dev libfdk-aac-dev libvorbis-dev libvpx-dev libx264-dev libx265-dev ocl-icd-opencl-dev pkg-config yasm libx11-xcb-dev libxcb-dri3-dev libxcb-present-dev libva-dev libmfx-dev intel-media-va-driver-non-free opencl-clhpp-headers | |
| # libvaのインストール |
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
| Rank | Site | SNI | HTTP | DNS | |
|---|---|---|---|---|---|
| 1 | google.com | open | open | open | |
| 2 | youtube.com | blocked | blocked | blocked | |
| 3 | facebook.com | blocked | blocked | blocked | |
| 4 | baidu.com | open | open | open | |
| 5 | yahoo.com | open | open | open | |
| 6 | amazon.com | open | open | open | |
| 7 | wikipedia.org | open | open | open | |
| 8 | qq.com | open | open | open | |
| 9 | google.co.in | open | open | open |
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
| /* | |
| * An efficient MPI parallel reduction without MPI_Scan or MPI_Reduce. (i.e. | |
| * only send/recv). | |
| * | |
| * TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | |
| * 0. You just DO WHAT THE FUCK YOU WANT TO. | |
| */ | |
| #include <mpi.h> | |
| #include <cstdio> | |
| #include <vector> |
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
| """ | |
| (c) 2013, 2019, 2022 Marius Retegan | |
| License: BSD-2-Clause | |
| Description: Create a .cube file of the molecular electrostatic | |
| potential (MEP) using ORCA. | |
| Run: python mep.py basename npoints nprocs (e.g. python mep.py water 40 2). | |
| Arguments: basename - file name without the extension; | |
| this should be the same for the .gbw and .scfp. | |
| npoints - number of grid points per side | |
| (80 should be fine) |