Skip to content
Snippets Groups Projects
Select Git revision
  • d413d5c17e59ae9ddc5fbdd730376e446145cbee
  • main default protected
  • da-retest-hostnames
  • portals4
  • testReleases
  • issue-125
  • fixMissingMoveConstructors
  • 2.1.19-dev
  • 2.1.19
9 results

memory_cuda.h

Blame
  • user avatar
    Yannik Müller authored
    d413d5c1
    History
    memory_cuda.h 845 B
    /****************************************************************************
    **  LinkTest                                                               **
    *****************************************************************************
    **  Copyright (c) 2008-2022                                                **
    **  Forschungszentrum Juelich, Juelich Supercomputing Centre               **
    **                                                                         **
    **  See the file COPYRIGHT in the package base directory for details       **
    ****************************************************************************/
    #ifndef LINKTEST_MEMORY_CUDA_H
    #define LINKTEST_MEMORY_CUDA_H
    
    #include "gpu_nvidia.h"
    
    namespace linktest
    {
    namespace cuda
    {
    
    template<typename T>
    void fill(GpuContext* ctx, T* start, T* end, const T& val);
    
    }
    }
    
    #endif