Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision 68e96baf4d7ddcb697b54686f89fd3560899bf72 authored by Leif Strand on 23 August 2005, 03:42:49 UTC, committed by Leif Strand on 23 August 2005, 03:42:49 UTC
[vcp] create branch 'CitcomS-2_x'
1 parent bd0c579
  • Files
  • Changes
  • 1387c38
  • /
  • examples
  • /
  • ncsa.sh
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:68e96baf4d7ddcb697b54686f89fd3560899bf72
directory badge
swh:1:dir:69451ea031c8f004ac09e287a7aff70fe23d1864
content badge
swh:1:cnt:5f8992da2d28569ae5859806be44ea22d7ada89b

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
ncsa.sh
#!/bin/csh
#
#  Sample Batch Script for a TeraGrid cluster job
#  Uses cluster-wide GPFS scratch
#
#  Submit this script using the command: qsub
#
#  Use the "qstat" command to check the status of a job.
#
# The following are embedded QSUB options. The syntax is #PBS (the # does
# _not_  denote that the lines are commented out so do not remove).
#
# walltime : maximum wall clock time (hh:mm:ss)
#PBS -l walltime=00:30:00
#
# nodes: number of 2-processor nodes
#   ppn: how many processors per node to use (1 or 2)
#       (you are always charged for the entire node)
#PBS -l nodes=2:ppn=2
#
# export all my environment variables to the job
#PBS -V
#
# job name (default = name of script file)
#PBS -N testjob
#
# filename for standard output (default = <job_name>.o<job_id>)
# at end of job, it is in directory from which qsub was executed
# remove extra ## from the line below if you want to name your own file
###PBS -o testjob.out
#
# filename for standard error (default = <job_name>.e<job_id>)
# at end of job, it is in directory from which qsub was executed
# remove extra ## from the line below if you want to name your own file
###PBS -e testjob.err
#
# send mail when the job begins and ends (optional)
# remove extra ## and provide your email address below if you wish to 
# receive email
###PBS -m be
###PBS -M myemail@myuniv.edu
# End of embedded QSUB options

set echo               # echo commands before execution; use for debugging

# calculate NP for mpirun line 
set NP=`wc -l $PBS_NODEFILE | cut -d'/' -f1`

# store just number portion of full job id
set JOBID=`echo $PBS_JOBID | cut -d'.' -f1`

# create scratch job directory
mkdir $TG_CLUSTER_PFS/$JOBID
cd $TG_CLUSTER_PFS/$JOBID
echo "Scratch Job Directory =" `pwd`

# Run the MPI program on all nodes/processors requested by the job
mpirun  -np $NP -machinefile $PBS_NODEFILE $EXPORT_ROOT/bin/mpipython.exe $EXPORT_ROOT/modules/CitcomS/SimpleApp.pyc --steps=1 --controller.monitoringFrequency=10 --launcher.nodes=4 --solver.datafile=example1 --solver.mesher.nprocx=2 --solver.mesher.nprocy=2 --solver.mesher.nodex=17 --solver.mesher.nodey=17 --solver.mesher.nodez=9 --mode=worker
                                                                                
# end of file
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API