Home | History | Annotate | Download | only in Basic

Lines Matching refs:GPU

1698   CudaArch GPU;
1711 GPU = CudaArch::SM_20;
1777 // Set __CUDA_ARCH__ for the GPU specified.
1779 switch (GPU) {
1781 assert(false && "No GPU arch when compiling CUDA device code.");
1850 GPU = StringToCudaArch(Name);
1851 return GPU != CudaArch::UNKNOWN;
1933 /// \brief The GPU profiles supported by the AMDGPU target.
1947 } GPU;
1960 GPU(isAMDGCN(Triple) ? GK_SOUTHERN_ISLANDS : GK_R600),
1978 if (GPU <= GK_CAYMAN)
2093 GPU = parseAMDGCNName(Name);
2095 GPU = parseR600Name(Name);
2097 return GPU != GK_NONE;
2107 if (GPU >= GK_EVERGREEN) {
2114 if (GPU >= GK_SOUTHERN_ISLANDS) {
2202 // XXX - What does the member GPU mean if device name string passed here?