diff --git a/apps/benchmarks/UniformGridGPU/UniformGridGPU.cpp b/apps/benchmarks/UniformGridGPU/UniformGridGPU.cpp
index 9e95c73dd6171fcf93765aa07708bae3467d742a..0af7c1360d85878d9647393da7fcc5a6cf293ae9 100644
--- a/apps/benchmarks/UniformGridGPU/UniformGridGPU.cpp
+++ b/apps/benchmarks/UniformGridGPU/UniformGridGPU.cpp
@@ -332,9 +332,11 @@ int main( int argc, char **argv )
                   python_coupling::PythonCallback pythonCallbackResults( "results_callback" );
                   if ( pythonCallbackResults.isCallable())
                   {
+                      const char * storagePattern = "twofield";
                       pythonCallbackResults.data().exposeValue( "mlupsPerProcess", mlupsPerProcess );
                       pythonCallbackResults.data().exposeValue( "stencil", infoStencil );
                       pythonCallbackResults.data().exposeValue( "configName", infoConfigName );
+                      pythonCallbackResults.data().exposeValue( "storagePattern", storagePattern );
                       pythonCallbackResults.data().exposeValue( "cse_global", infoCseGlobal );
                       pythonCallbackResults.data().exposeValue( "cse_pdfs", infoCsePdfs );
                       // Call Python function to report results
diff --git a/apps/benchmarks/UniformGridGPU/UniformGridGPU_AA.cpp b/apps/benchmarks/UniformGridGPU/UniformGridGPU_AA.cpp
index e19413a25583fe1d05e42e6ce9dfb9f61f916214..fdf1c1bf759ec07236098a22d70111fa9561a2da 100644
--- a/apps/benchmarks/UniformGridGPU/UniformGridGPU_AA.cpp
+++ b/apps/benchmarks/UniformGridGPU/UniformGridGPU_AA.cpp
@@ -267,9 +267,11 @@ int main( int argc, char **argv )
                     python_coupling::PythonCallback pythonCallbackResults( "results_callback" );
                     if ( pythonCallbackResults.isCallable())
                     {
+                        const char * storagePattern = "aa";
                         pythonCallbackResults.data().exposeValue( "mlupsPerProcess", mlupsPerProcess );
                         pythonCallbackResults.data().exposeValue( "stencil", infoStencil );
                         pythonCallbackResults.data().exposeValue( "configName", infoConfigName );
+                        pythonCallbackResults.data().exposeValue( "storagePattern", storagePattern );
                         pythonCallbackResults.data().exposeValue( "cse_global", infoCseGlobal );
                         pythonCallbackResults.data().exposeValue( "cse_pdfs", infoCsePdfs );
                         // Call Python function to report results
diff --git a/apps/benchmarks/UniformGridGPU/simulation_setup/overlap_benchmark.py b/apps/benchmarks/UniformGridGPU/simulation_setup/overlap_benchmark.py
index 1beacb0059ba1df29e03cc71387ee645cf730268..6d64d4d89f7ed0b82a194997b08c60cbeabd236d 100755
--- a/apps/benchmarks/UniformGridGPU/simulation_setup/overlap_benchmark.py
+++ b/apps/benchmarks/UniformGridGPU/simulation_setup/overlap_benchmark.py
@@ -121,9 +121,7 @@ def generate_jobscripts(machine='pizdaint_hybrid',
                                  output_file='overlap_bench_{:04d}_%j.txt'.format(node_count),
                                  error_file='overlap_bench_{:04d}_%j.txt'.format(node_count),
                                  initial_dir=getcwd(),
-                                 #exe_name='UniformGridBenchmarkGPU',
-                                 #parameter_files=['overlap_benchmark.py'],
-                                 commands=list((exe, 'overlap_benchmark.py') for exe in exe_names),
+                                 commands=list(("./" + exe, 'overlap_benchmark.py') for exe in exe_names),
                                  wall_time=timedelta(minutes=25),
                                  machine=machine,
                                  account='d105',