Skip to content

Commit dd43dc9

Browse files
committed
SWDEV-448792 - Fix clinfo local buffer type
Change-Id: I0228c5e97ce7c466983fd4af71d25e7f8161c2c8
1 parent 4c82df8 commit dd43dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opencl/tools/clinfo/clinfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ main(int argc, char** argv)
504504
std::cout << " Local memory type:\t\t\t\t " ;
505505
switch (device.getInfo<CL_DEVICE_LOCAL_MEM_TYPE>()) {
506506
case CL_LOCAL:
507-
std::cout << "Scratchpad" << std::endl;
507+
std::cout << "Local" << std::endl;
508508
break;
509509
case CL_GLOBAL:
510510
std::cout << "Global" << std::endl;

0 commit comments

Comments
 (0)