Revision d206c8f1ec265d04321e463f919e35c5f9c2cfb8 authored by Brad King on 05 April 2021, 17:44:49 UTC, committed by Brad King on 05 April 2021, 17:44:49 UTC
2 parent s 004dbba + 19ff734
Raw File
CMakeCUDACompilerABI.cu
#ifndef __CUDACC__
#  error "A C or C++ compiler has been selected for CUDA"
#endif

#include "CMakeCompilerABI.h"

int main(int argc, char* argv[])
{
  int require = 0;
  require += info_sizeof_dptr[argc];
#if defined(ABI_ID)
  require += info_abi[argc];
#endif
  (void)argv;
  return require;
}
back to top