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

Method findVectorWidthType

src/library/blas/gens/kprintf.cpp:99–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99const char * kprintf::findVectorWidthType(char *type)
100{
101 size_t i;
102
103 for(i=0; i<sizeof(vectorWidthTypes)/sizeof(const char*); i++)
104 {
105 if (strcmp(type, vectorWidthTypes[i]) == 0)
106 return vectorWidthTypes[i];
107 }
108 return NULL;
109}
110
111const char *kprintf::findTypeVLOAD(char *type)
112{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected