-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/simoneponcioni/HFE
- Loading branch information
Showing
28 changed files
with
276 additions
and
1,324 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ outputs/ | |
!04_SIMULATIONS/simulations_directory.text | ||
99_TEMP/ | ||
QMSKI/DSC_PAPER/ | ||
out/ | ||
|
||
multirun/ | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# User info | ||
#SBATCH --mail-user=simone.poncioni@unibe.ch | ||
#SBATCH --mail-type=begin,end,fail | ||
|
||
# Job name | ||
#SBATCH --job-name="build_container" | ||
|
||
# Runtime and memory | ||
#SBATCH --time=01:00:00 | ||
#SBATCH --cpus-per-task=10 | ||
#SBATCH --mem-per-cpu=4G | ||
#SBATCH --tmp=64G | ||
|
||
# Workdir | ||
#SBATCH --chdir=/storage/workspaces/artorg_msb/hpc_abaqus/poncioni/apptainer | ||
#SBATCH --out=%x.out | ||
#SBATCH --err=%x.err | ||
|
||
|
||
# Run command | ||
srun apptainer build --force hfe_development_ifort.sif docker://simoneponcioni/hfe_development:latest | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/bin/bash | ||
|
||
# User info | ||
#SBATCH --mail-user=simone.poncioni@unibe.ch | ||
#SBATCH --mail-type=begin,end,fail | ||
|
||
# Job name | ||
#SBATCH --job-name="hfe_pipeline" | ||
|
||
# Runtime and memory | ||
#SBATCH --time=03:00:00 | ||
#SBATCH --cpus-per-task=16 | ||
#SBATCH --ntasks-per-node=1 | ||
#SBATCH --mem-per-cpu=8G | ||
#SBATCH --tmp=100G | ||
#SBATCH --array=1-5%5 | ||
|
||
# Workdir | ||
#SBATCH --chdir=/storage/workspaces/artorg_msb/hpc_abaqus/poncioni/HFE | ||
#SBATCH --output=out/hfe_%A_%a.out | ||
#SBATCH --error=out/hfe_%A_%a.err | ||
|
||
############################################################################################################## | ||
### Load modules | ||
HPC_WORKSPACE=hpc_abaqus module load Workspace | ||
|
||
unset SLURM_GTIDS | ||
|
||
### greyscale_filenames.txt contains lines with 1 greyscale_filename per line. | ||
greyscale_filenames=/storage/workspaces/artorg_msb/hpc_abaqus/poncioni/HFE/00_ORIGAIM/filenames.txt | ||
|
||
### Line <i> contains greyscale_filename for run <i> | ||
# Get greyscale_filename | ||
greyscale_filename=$(cat $greyscale_filenames | awk -v var=$SLURM_ARRAY_TASK_ID 'NR==var {print $1}') | ||
|
||
|
||
### Zero pad the task ID to match the numbering of the input files | ||
n=$(printf "%04d" $SLURM_ARRAY_TASK_ID) | ||
|
||
# Run command | ||
srun apptainer exec /storage/workspaces/artorg_msb/hpc_abaqus/poncioni/apptainer/hfe_development_ifort.sif \ | ||
/bin/bash -c "source /opt/intel/oneapi/setvars.sh && source /opt/miniconda/etc/profile.d/conda.sh && conda activate hfe-essentials && python 02_CODE/src/pipeline_runner.py simulations.grayscale_filenames=$greyscale_filename" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Oops, something went wrong.