Skip to content

Commit a1d6e82

Browse files
author
Siyuan Feng
authored
[Runtime][Minor] Suppress verbose logging in Metal device API (#15543)
A minor fix to suppresses verbose logging in Metal device API.
1 parent 513bd1a commit a1d6e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/metal/metal_device_api.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ int GetWarpSize(id<MTLDevice> dev) {
164164
for (size_t i = 0; i < devs.count; ++i) {
165165
id<MTLDevice> d = [devs objectAtIndex:i];
166166
devices.push_back(d);
167-
LOG(INFO) << "Intializing Metal device " << i << ", name=" << [d.name UTF8String];
167+
DLOG(INFO) << "Intializing Metal device " << i << ", name=" << [d.name UTF8String];
168168
warp_size.push_back(GetWarpSize(d));
169169
}
170170
#endif

0 commit comments

Comments
 (0)