Changes between Version 8 and Version 9 of cypress/Programming/Cexamples/OpenMp


Ignore:
Timestamp:
08/16/25 16:04:12 (10 hours ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Programming/Cexamples/OpenMp

    v8 v9  
    4343
    4444=== Example of Jobscript ===
     45'''slurmscript'''
    4546{{{#!sh
    4647#!/bin/bash
     48#SBATCH --partition=defq    # Partition (default is 'defq')
    4749#SBATCH --qos=normal            # Quality of Service
    4850#SBATCH --job-name=helloC_OMP   # Job Name
     
    5355#SBATCH --gres=mic:0            # Number of Co-Processors
    5456
    55 module load intel-psxe
     57#module load intel-psxe
    5658
    5759pwd
     
    6668export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK
    6769./a.out
     70
     71echo "End of Job"
    6872}}}
     73
     74Submit a job
     75{{{
     76sbatch slurmscript
     77}}}
     78Check the status of your jobs
     79{{{
     80squeue -u USERNAME
     81}}}