-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40dedb1
commit 7046c22
Showing
12 changed files
with
49 additions
and
104 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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.
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,9 @@ | ||
#ncores t-cpu t-gpu mechanism ode ncells | ||
1 2311.0627 490.294736 gri Rosenbrock23 30 | ||
16 176.198639 242.005437 gri Rosenbrock23 30 | ||
4 598.733945 284.076566 gri Rosenbrock23 30 | ||
8 316.282783 255.162786 gri Rosenbrock23 30 | ||
1 250.060717 117.301023 h2 Rosenbrock23 30 | ||
16 28.098566 24.871078 h2 Rosenbrock23 30 | ||
4 70.88382 39.178084 h2 Rosenbrock23 30 | ||
8 40.674046 27.021495 h2 Rosenbrock23 30 |
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,26 @@ | ||
#!/bin/bash | ||
#SBATCH -J bench | ||
#SBATCH --output=runLog.out | ||
#SBATCH --error=runLog.err | ||
#SBATCH --time=24:00:00 | ||
#SBATCH --partition=gpumedium | ||
#SBATCH --nodes=1 | ||
#SBATCH --ntasks-per-node=128 | ||
#SBATCH --account=project_2001715 | ||
#SBATCH --gres=gpu:a100:4 | ||
|
||
|
||
# to allocate gpus #SBATCH --gres=gpu:a100:4 | ||
|
||
source ~/OpenFOAM/OpenFOAM-dev/etc/bashrc | ||
|
||
module load cuda | ||
|
||
# Source run functions | ||
. $WM_PROJECT_DIR/bin/tools/RunFunctions | ||
|
||
nvidia-cuda-mps-control -f > mps.log& | ||
|
||
|
||
./Allrun_gpu | ||
|