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

Function deviceL1CacheAssoc

src/library/common/devinfo-cache.c:870–885  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

868}
869
870cl_uint
871deviceL1CacheAssoc(
872 cl_device_id device,
873 cl_ulong l1CacheSize,
874 cl_int *error)
875{
876 /* TODO: Implementation needed. */
877
878 (void)device;
879 (void)l1CacheSize;
880
881 if (error != NULL) {
882 *error = CL_SUCCESS;
883 }
884 return 32;
885}
886
887static cl_ulong
888closestPowerOf2(cl_ulong x)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected