File diff 6da277f993c5 → d4cb694d4b30
run.sh
Show inline comments
 
#!/bin/bash
 
set -x
 

	
 
# identity, pointless math ops
 
IDSCL=8
 
@@ -23,7 +24,7 @@ renjin -f recycling.R --args opt $PDRYC
 
R -f recycling.R --args none $PDRYC
 

	
 
# parallel processing
 
PDPAR=8
 
PDPAR=9
 
R -f parallel.R --args none $PDPAR
 
export RENJIN_OPTS="-Xmx200G -Drenjin.vp.threads=1"                            
 
renjin -f parallel.R --args 1 $PDPAR
 
@@ -47,19 +48,17 @@ renjin -f operators.R --args noopt $PDOPT
 
R -f operators.R --args none $PDOPT
 

	
 
# survey
 
# NOTE: Need to install MonetDB and load ACS dataset to run this
 
# R -f sqlsurvey.R   --args laptop 42
 
#NOTE: Need to install MonetDB and load ACS dataset to run this
 
#R -f sqlsurvey.R   --args laptop 42
 
R -f survey.R      --args laptop 42
 

	
 
export RENJIN_OPTS="-Xmx200G"         
 
renjin -f survey.R --args jitopt 42
 

	
 
export RENJIN_OPTS="-Xmx200G -Drenjin.vp.disableopt=true"         
 
renjin -f survey.R --args noopt 42   
 

	
 
export RENJIN_OPTS="-Xmx200G -Drenjin.vp.disablejit=true"    
 
renjin -f survey.R --args nojit 42      
 

	
 
export RENJIN_OPTS="-Xmx200G -Drenjin.vp.disableopt=true -Drenjin.vp.disablejit=true"    
 
renjin -f survey.R --args none 42      
 
   
 
export RENJIN_OPTS="-Xmx200G -Drenjin.vp.threads=1"    
 
renjin -f survey.R --args 1t 42      
 
\ No newline at end of file