This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new a1d6e82291 [Runtime][Minor] Suppress verbose logging in Metal device
API (#15543)
a1d6e82291 is described below
commit a1d6e8229136c0b60ba03847e535d8be9c880cf1
Author: Siyuan Feng <[email protected]>
AuthorDate: Mon Aug 14 08:34:18 2023 +0800
[Runtime][Minor] Suppress verbose logging in Metal device API (#15543)
A minor fix to suppresses verbose logging in Metal device API.
---
src/runtime/metal/metal_device_api.mm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/runtime/metal/metal_device_api.mm
b/src/runtime/metal/metal_device_api.mm
index 1e60019f14..c0fe0b76a0 100644
--- a/src/runtime/metal/metal_device_api.mm
+++ b/src/runtime/metal/metal_device_api.mm
@@ -164,7 +164,7 @@ void MetalWorkspace::Init() {
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