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
| #run blender in batch, take all settings from those saved in the .blend file | |
| #http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Command_Line | |
| blender -b blender.blend -o //imagename -F PNG -x 1 -f 1 |
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
| #compile source on Flux | |
| module load matlab/2014a | |
| mcc -m implicitthreads.m |
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/python | |
| #Brock Palen | |
| # [email protected] | |
| # | |
| ''' | |
| Takes data in the form of: | |
| metric number |
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
| function benchmarkpct(ncpus) | |
| sched= findResource('scheduler', 'type', 'mpiexec') ; | |
| set(sched, 'EnvironmentSetMethod', 'setenv') | |
| set(sched, 'MpiexecFileName', '/home/software/rhel6/mpiexec/bin/mpiexec') | |
| sched | |
| %get current mpi library | |
| mpiLibConf |
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
| function [lib, extras] = mpiLibConf | |
| %MATLAB MPI Library overloading for Infiniband and Ethernet Networks | |
| % | |
| %USAGE | |
| % place in ~/matlab/mpiLibConf.m | |
| % Update to point to your MPICH / Intel MPI etc location | |
| % mvapich has two extra libraries libmpl.so and libopa.so | |
| % use # ldd /home/software/rhel6/mvapich2/1.8/lib/libmpich.so | |
| % Any libraries from the mpich/mvapich install location need to be included in extras |
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
| #include <iostream> | |
| #include <stdlib.h> | |
| #include <sys/time.h> | |
| #include <unistd.h> | |
| //#define DIM 20000 | |
| /***** | |
| Total size used should be DIM*DIM*sizeof(double) | |
| compute the matrix multiply dgemm |
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
| #Brock Palen [email protected] | |
| # 5/2015 | |
| # GridFTP config for Logstash | |
| input { | |
| #track the globus gridftp transfer logs | |
| file { | |
| path => [ "/var/log/gridftp-go.log" ] | |
| sincedb_path => "/var/run/logstash-gridftp.sincedb" |
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
| #download and install Globus toolkit, get version 6.0 | |
| tar -xzf globus_toolkit-6.0.1443479657.tar.gz | |
| cd globus_toolkit-6.0.1443479657 | |
| #enable GSI and myproxy for myproxy-login | |
| ./configure --prefix=<INSTALL_PREFIX> --enable-myproxy | |
| make -j 12 | |
| make install | |
| #setup location for XSEDE Certificates |
OlderNewer