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 | |
############################################################################### | |
#### Header | |
############################################################################### | |
set -e -u -o pipefail | |
TEST_SCRIPT_DIR=$(dirname $(readlink -f $BASH_SOURCE)) | |
############################################################################### | |
#### Fetch & extract openblas |
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
+/home_nfs/bmorvana/Downloads/hwloc-pid-children-20230725.1406.gitba9e6582c/utils/hwloc/hwloc-ps --short-name --threads --children-of-pid 1562218 --name pi.exe | |
1562276 PU:0 PU:2 PU:4 PU:6 PU:8 PU:10 PU:12 PU:14 PU:16 PU:18 PU:20 PU:22 PU:24 PU:26 PU:28 PU:30 pi.exe | |
1562276 PU:0 pi.exe | |
1562533 PU:2 pi.exe | |
1562534 PU:4 pi.exe | |
1562535 PU:6 pi.exe | |
1562536 PU:8 pi.exe | |
1562537 PU:10 pi.exe | |
1562538 PU:12 pi.exe | |
1562539 PU:14 pi.exe |
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
+/home_nfs/bmorvana/Downloads/hwloc-pid-children-20230725.1406.gitba9e6582c/utils/hwloc/hwloc-ps --short-name --threads --pid 1562218 --name pi.exe | |
1562218 PU:0 PU:2 PU:4 PU:6 PU:8 PU:10 PU:12 PU:14 PU:16 PU:18 PU:20 PU:22 PU:24 PU:26 PU:28 PU:30 maqao |
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 | |
#SBATCH -t 0:10:00 | |
#SBATCH -N 1 | |
#SBATCH --exclusive | |
#SBATCH --job-name="_ECTrans" | |
#SBATCH -o %x_%j_%N.slurm.out | |
# reload env | |
[ -f ~/.bashrc ] && . ~/.bashrc |
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
import * as axios from "axios"; | |
import memdown from "memdown"; | |
const quadstore = require("quadstore"); | |
const SparqlEngine = require("quadstore-sparql"); | |
const HttpServer = require("quadstore-http"); | |
(async function() { | |
const db = memdown(); | |
const listenURL = "http://127.0.0.1:8080"; |