Skip to content
Snippets Groups Projects
tnlCuda.cpp 1.82 KiB
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
    
                              tnlCuda.cpp  -  description
    
                                 -------------------
        begin                : Jul 11, 2013
        copyright            : (C) 2013 by Tomas Oberhuber
        email                : tomas.oberhuber@fjfi.cvut.cz
     ***************************************************************************/
    
    
    /* See Copyright Notice in tnl/Copyright */
    
    
    #include <core/tnlCuda.h>
    
    #include <core/mfuncs.h>
    
    #include <tnlConfig.h>
    
    #include <config/tnlConfigDescription.h>
    #include <config/tnlParameterContainer.h>
    
    
    tnlString tnlCuda :: getDeviceType()
    {
       return tnlString( "tnlCuda" );
    }
    
    int tnlCuda::getGPUTransferBufferSize()
    {
       return 1 << 20;
    }
    
    
    int tnlCuda::getNumberOfBlocks( const int threads,
                                    const int blockSize )
    {
       return roundUpDivision( threads, blockSize );
    }
    
    int tnlCuda::getNumberOfGrids( const int blocks,
                                   const int gridSize )
    {
       return roundUpDivision( blocks, gridSize );
    }
    
    
    /*size_t tnlCuda::getFreeMemory()
    
    void tnlCuda::configSetup( tnlConfigDescription& config, const tnlString& prefix )
    {
    #ifdef HAVE_CUDA
       config.addEntry<  int >( prefix + "cuda-device", "Choose CUDA device to run the computationon.", 0 );
    #else
       config.addEntry<  int >( prefix + "cuda-device", "Choose CUDA device to run the computationon (not supported on this system).", 0 );
    #endif
    }
    
    bool tnlCuda::setup( const tnlParameterContainer& parameters,
                          const tnlString& prefix )
    {
    #ifdef HAVE_CUDA
       int cudaDevice = parameters.getParameter< int >( "cuda-device" );
       if( cudaSetDevice( cudaDevice ) != cudaSuccess )
       {
          std::cerr << "I cannot activate CUDA device number " << cudaDevice << "." << std::endl;
          return false;
       }
    
       return true;
    }