tremoved status message from transferDarcyToGlobalDeviceMemory - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
 (HTM) git clone git://src.adamsgaard.dk/sphere
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 4f3a852283c68ac86643c460215f160f68288e95
 (DIR) parent 7fff983d1864e9f0ca6fb35e4c0ac01dfce83e57
 (HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
       Date:   Wed,  9 Oct 2013 13:47:01 +0200
       
       removed status message from transferDarcyToGlobalDeviceMemory
       
       Diffstat:
         M src/darcy.cuh                       |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/src/darcy.cuh b/src/darcy.cuh
       t@@ -59,8 +59,8 @@ void DEM::transferDarcyToGlobalDeviceMemory(int statusmsg)
            checkForCudaErrors("Before attempting cudaMemcpy in "
                    "transferDarcyToGlobalDeviceMemory");
        
       -    if (verbose == 1 && statusmsg == 1)
       -        std::cout << "  Transfering fluid data to the device:           ";
       +    //if (verbose == 1 && statusmsg == 1)
       +        //std::cout << "  Transfering fluid data to the device:           ";
        
            // number of cells
            //unsigned int ncells = d_nx*d_ny*d_nz; // without ghost nodes
       t@@ -80,8 +80,8 @@ void DEM::transferDarcyToGlobalDeviceMemory(int statusmsg)
            cudaMemcpy(dev_d_phi, d_phi, memSizeF, cudaMemcpyHostToDevice);
        
            checkForCudaErrors("End of transferDarcyToGlobalDeviceMemory");
       -    if (verbose == 1 && statusmsg == 1)
       -        std::cout << "Done" << std::endl;
       +    //if (verbose == 1 && statusmsg == 1)
       +        //std::cout << "Done" << std::endl;
        }
        
        // Transfer from device