Skip to content

Commit

Permalink
[Runtime][Minor] Suppress verbose logging in Metal device API (apache…
Browse files Browse the repository at this point in the history
…#15543)

A minor fix to suppresses verbose logging in Metal device API.
  • Loading branch information
Hzfengsy authored Aug 14, 2023
1 parent 513bd1a commit a1d6e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/metal/metal_device_api.mm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ int GetWarpSize(id<MTLDevice> dev) {
for (size_t i = 0; i < devs.count; ++i) {
id<MTLDevice> d = [devs objectAtIndex:i];
devices.push_back(d);
LOG(INFO) << "Intializing Metal device " << i << ", name=" << [d.name UTF8String];
DLOG(INFO) << "Intializing Metal device " << i << ", name=" << [d.name UTF8String];
warp_size.push_back(GetWarpSize(d));
}
#endif
Expand Down

0 comments on commit a1d6e82

Please sign in to comment.