diff --git a/aten/src/ATen/native/vulkan/api/Resource.cpp b/aten/src/ATen/native/vulkan/api/Resource.cpp index 316dfab1344b..ebed09d47e7d 100644 --- a/aten/src/ATen/native/vulkan/api/Resource.cpp +++ b/aten/src/ATen/native/vulkan/api/Resource.cpp @@ -1,20 +1,6 @@ #include #include -#define PRINT_FIELD(struct, field) #field << ": " << struct.field << std::endl - -std::ostream& operator<<(std::ostream& out, VmaTotalStatistics stats) { - VmaDetailedStatistics total_stats = stats.total; - out << "VmaTotalStatistics: " << std::endl; - out << " " << PRINT_FIELD(total_stats.statistics, blockCount); - out << " " << PRINT_FIELD(total_stats.statistics, allocationCount); - out << " " << PRINT_FIELD(total_stats.statistics, blockBytes); - out << " " << PRINT_FIELD(total_stats.statistics, allocationBytes); - return out; -} - -#undef PRINT_FIELD - namespace at { namespace native { namespace vulkan {