Always print out the Vulkan device created for clarity
This can be very useful for confirming the Vulkan implementation
used as we switch between real GPU and SwiftShader freqently.
Closes https://github.com/google/iree/pull/1989
COPYBARA_INTEGRATE_REVIEW=https://github.com/google/iree/pull/1989 from antiagainst:print-vk-device 0d30b84c94d7ffa68cdc55fa023523ea910d8fb7
PiperOrigin-RevId: 312679977
diff --git a/iree/hal/vulkan/vulkan_driver.cc b/iree/hal/vulkan/vulkan_driver.cc
index 5b91415..b930c63 100644
--- a/iree/hal/vulkan/vulkan_driver.cc
+++ b/iree/hal/vulkan/vulkan_driver.cc
@@ -292,6 +292,8 @@
device_extensibility_spec_, syms(),
renderdoc_capture_manager_.get()));
+ LOG(INFO) << "Created Vulkan Device: " << device->info().name();
+
return device;
}