MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / dtypeBuiltinType

Function dtypeBuiltinType

src/library/common/kgen_basic.c:145–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

143}
144
145const char
146*dtypeBuiltinType(DataType dtype)
147{
148 const char *s;
149
150 switch (dtype) {
151 case TYPE_FLOAT:
152 s = "float";
153 break;
154 case TYPE_DOUBLE:
155 s = "double";
156 break;
157 case TYPE_COMPLEX_FLOAT:
158 s = "float2";
159 break;
160 case TYPE_COMPLEX_DOUBLE:
161 s = "double2";
162 break;
163 default:
164 s = NULL;
165 break;
166 }
167
168 return s;
169}
170
171const char
172*dtypeUPtrField(DataType dtype)

Callers 15

declareSymvKernelFunction · 0.85
generatorFunction · 0.85
getResultGPRsInfoFunction · 0.85
updateResultGenFunction · 0.85
declareGemvKernelFunction · 0.85
generatorFunction · 0.85
declareSubgrLDSFunction · 0.85
declareKernelFunction · 0.85
genComplexMathOperatorsFunction · 0.85
declareTrxmKernelFunction · 0.85
declareKernelFunction · 0.85
declareComplexMultsFunction · 0.85

Calls

no outgoing calls

Tested by 1

testMatrBlockRWFunction · 0.68