1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
/*
** Copyright (c) 2020 LunarG, Inc.
** Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and associated documentation files (the "Software"),
** to deal in the Software without restriction, including without limitation
** the rights to use, copy, modify, merge, publish, distribute, sublicense,
** and/or sell copies of the Software, and to permit persons to whom the
** Software is furnished to do so, subject to the following conditions:
**
** The above copyright notice and this permission notice shall be included in
** all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
** DEALINGS IN THE SOFTWARE.
*/
#include "project_version.h"
#include "file_optimizer.h"
#include "../tool_settings.h"
#if defined(D3D12_SUPPORT)
#include "dx12_optimize_util.h"
#endif
#include "decode/decode_api_detection.h"
#include "decode/dx12_optimize_options.h"
#include "decode/file_processor.h"
#include "format/format.h"
#include "format/format_util.h"
#include "generated/generated_vulkan_decoder.h"
#include "generated/generated_vulkan_referenced_resource_consumer.h"
#include "util/argument_parser.h"
#include "util/logging.h"
#include "util/date_time.h"
#include "vulkan/vulkan.h"
#include <cassert>
#include <stdexcept>
#include <string>
#include <unordered_set>
#include <vector>
#if defined(WIN32)
extern "C"
{
__declspec(dllexport) extern const UINT D3D12SDKVersion = 606;
}
extern "C"
{
__declspec(dllexport) extern const char* D3D12SDKPath = u8".\\D3D12\\";
}
#endif
const char kOptions[] = "-h|--help,--version,--no-debug-popup,--d3d12-pso-removal,--dxr,--dxr-experimental";
const char kD3d12PsoRemoval[] = "--d3d12-pso-removal";
const char kDx12OptimizeDxr[] = "--dxr";
const char kDx12OptimizeDxrExperimental[] = "--dxr-experimental";
static void PrintUsage(const char* exe_name)
{
std::string app_name = exe_name;
size_t dir_location = app_name.find_last_of("/\\");
if (dir_location >= 0)
{
app_name.replace(0, dir_location + 1, "");
}
GFXRECON_WRITE_CONSOLE("\n%s - Produce new captures with enhanced performance characteristics",
app_name.c_str());
GFXRECON_WRITE_CONSOLE("\t\t\tFor Vulkan, the optimizer will remove unused buffer and image initialization data (for trimmed captures)");
GFXRECON_WRITE_CONSOLE("\t\t\tFor D3D12, the optimizer will improve DXR replay performance and remove unused PSOs (for all captures)");
GFXRECON_WRITE_CONSOLE("");
GFXRECON_WRITE_CONSOLE("Usage:");
GFXRECON_WRITE_CONSOLE(" %s [-h | --help] [--version] [--d3d12-pso-removal] [--dxr] <input-file> <output-file>", app_name.c_str());
GFXRECON_WRITE_CONSOLE("");
GFXRECON_WRITE_CONSOLE("Required arguments:");
GFXRECON_WRITE_CONSOLE(" <input-file>\t\tThe path to input GFXReconstruct capture file to be processed.");
GFXRECON_WRITE_CONSOLE(" <output-file>\t\tThe path to output GFXReconstruct capture file to be created.");
GFXRECON_WRITE_CONSOLE("");
GFXRECON_WRITE_CONSOLE("Optional arguments:");
GFXRECON_WRITE_CONSOLE(" -h\t\t\tPrint usage information and exit (same as --help).");
GFXRECON_WRITE_CONSOLE(" --version\t\tPrint version information and exit.");
#if defined(WIN32)
#if defined(_DEBUG)
GFXRECON_WRITE_CONSOLE(" --no-debug-popup\tDisable the 'Abort, Retry, Ignore' message box");
GFXRECON_WRITE_CONSOLE(" \t\tdisplayed when abort() is called (Windows debug only).");
#endif
GFXRECON_WRITE_CONSOLE(
" --d3d12-pso-removal\tD3D12-only: Remove creation of unreferenced PSOs.");
GFXRECON_WRITE_CONSOLE(" --dxr\t\t\tD3D12-only: Optimize for DXR replay.");
GFXRECON_WRITE_CONSOLE("");
GFXRECON_WRITE_CONSOLE("Note: running without optional arguments will instruct the optimizer to detect API and run all available optimizations.");
#endif
}
void GetUnreferencedResources(const std::string& input_filename,
std::unordered_set<gfxrecon::format::HandleId>* unreferenced_ids)
{
GFXRECON_ASSERT(unreferenced_ids != nullptr);
gfxrecon::decode::FileProcessor file_processor;
if (file_processor.Initialize(input_filename))
{
gfxrecon::decode::VulkanDecoder decoder;
gfxrecon::decode::VulkanReferencedResourceConsumer resref_consumer;
decoder.AddConsumer(&resref_consumer);
file_processor.AddDecoder(&decoder);
file_processor.ProcessAllFrames();
if ((file_processor.GetCurrentFrameNumber() > 0) &&
(file_processor.GetErrorState() == gfxrecon::decode::FileProcessor::kErrorNone))
{
// Get the list of resources that were included in a command buffer submission during replay.
resref_consumer.GetReferencedResourceIds(nullptr, unreferenced_ids);
}
else if (file_processor.GetErrorState() != gfxrecon::decode::FileProcessor::kErrorNone)
{
GFXRECON_WRITE_CONSOLE("A failure has occurred during file processing");
gfxrecon::util::Log::Release();
exit(-1);
}
else
{
GFXRECON_WRITE_CONSOLE("File did not contain any frames");
gfxrecon::util::Log::Release();
exit(0);
}
}
}
void FilterUnreferencedResources(const std::string& input_filename,
const std::string& output_filename,
std::unordered_set<gfxrecon::format::HandleId>&& unreferenced_ids)
{
gfxrecon::FileOptimizer file_processor(std::move(unreferenced_ids));
if (file_processor.Initialize(input_filename, output_filename))
{
file_processor.Process();
if (file_processor.GetErrorState() != gfxrecon::FileOptimizer::kErrorNone)
{
GFXRECON_WRITE_CONSOLE("A failure has occurred during file processing");
gfxrecon::util::Log::Release();
exit(-1);
}
GFXRECON_WRITE_CONSOLE("Resource filtering complete.");
GFXRECON_WRITE_CONSOLE("\tOriginal file size: %" PRIu64 " bytes", file_processor.GetNumBytesRead());
GFXRECON_WRITE_CONSOLE("\tOptimized file size: %" PRIu64 " bytes", file_processor.GetNumBytesWritten());
}
}
void VkRemoveRedundantResources(std::string input_filename, std::string output_filename)
{
GFXRECON_WRITE_CONSOLE("Scanning Vulkan file %s for unreferenced resources.", input_filename.c_str());
std::unordered_set<gfxrecon::format::HandleId> unreferenced_ids;
GetUnreferencedResources(input_filename, &unreferenced_ids);
if (!unreferenced_ids.empty())
{
// Filter unreferenced ids.
GFXRECON_WRITE_CONSOLE("Writing optimized file, removing initialization data for %" PRIu64 " unused resources.",
unreferenced_ids.size());
FilterUnreferencedResources(input_filename, output_filename, std::move(unreferenced_ids));
}
else
{
GFXRECON_WRITE_CONSOLE("No unused resources detected. A new file will not be created.",
input_filename.c_str());
}
}
void RunDx12Optimizations(const std::string& input_filename,
const std::string& output_filename,
gfxrecon::decode::Dx12OptimizationOptions dx12_options)
{
#if defined(D3D12_SUPPORT)
bool result = gfxrecon::Dx12OptimizeFile(input_filename, output_filename, dx12_options);
if (!result)
{
gfxrecon::util::Log::Release();
exit(-1);
}
#endif
}
int main(int argc, const char** argv)
{
int64_t start_time = gfxrecon::util::datetime::GetTimestamp();
gfxrecon::util::Log::Init();
gfxrecon::util::ArgumentParser arg_parser(argc, argv, kOptions, "");
if (CheckOptionPrintUsage(argv[0], arg_parser) || CheckOptionPrintVersion(argv[0], arg_parser))
{
gfxrecon::util::Log::Release();
exit(0);
}
else if (arg_parser.IsInvalid() || (arg_parser.GetPositionalArgumentsCount() != 2))
{
PrintUsage(argv[0]);
gfxrecon::util::Log::Release();
exit(-1);
}
else
{
#if defined(WIN32) && defined(_DEBUG)
if (arg_parser.IsOptionSet(kNoDebugPopup))
{
_set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
}
#endif
}
try
{
std::string input_filename;
std::string output_filename;
const std::vector<std::string>& positional_arguments = arg_parser.GetPositionalArguments();
input_filename = positional_arguments[0];
output_filename = positional_arguments[1];
// Parameter checking and API detection
gfxrecon::decode::Dx12OptimizationOptions dx12_options;
dx12_options.optimize_dxr = arg_parser.IsOptionSet(kDx12OptimizeDxr);
dx12_options.optimize_dxr_experimental = arg_parser.IsOptionSet(kDx12OptimizeDxrExperimental);
dx12_options.remove_redundant_psos = arg_parser.IsOptionSet(kD3d12PsoRemoval);
if (dx12_options.optimize_dxr_experimental)
{
GFXRECON_WRITE_CONSOLE("Running experimental DXR optimization. This mode is experimental, and should only "
"be used if --dxr did not produce a valid capture file.");
dx12_options.optimize_dxr = true;
}
// Automatic mode. User specified no options.
if ((dx12_options.optimize_dxr == false) && (dx12_options.remove_redundant_psos == false))
{
bool detected_d3d12 = false;
bool detected_vulkan = false;
gfxrecon::decode::DetectAPIs(input_filename, detected_d3d12, detected_vulkan);
if (detected_d3d12)
{
dx12_options.optimize_dxr = true;
dx12_options.remove_redundant_psos = true;
RunDx12Optimizations(input_filename, output_filename, dx12_options);
}
else if (detected_vulkan)
{
VkRemoveRedundantResources(input_filename, output_filename);
}
else
{
GFXRECON_LOG_ERROR("Could not detect graphics API. Aborting optimization.")
}
}
// Manual mode. Follow user instructions.
else
{
RunDx12Optimizations(input_filename, output_filename, dx12_options);
}
}
catch (const std::runtime_error& error)
{
GFXRECON_WRITE_CONSOLE("File processing has encountered a fatal error and cannot continue: %s", error.what());
gfxrecon::util::Log::Release();
return -1;
}
catch (...)
{
GFXRECON_WRITE_CONSOLE("File processing failed due to an unhandled exception");
gfxrecon::util::Log::Release();
return -1;
}
int64_t end_time = gfxrecon::util::datetime::GetTimestamp();
int time_in_seconds = static_cast<int>(gfxrecon::util::datetime::ConvertTimestampToSeconds(
gfxrecon::util::datetime::DiffTimestamps(start_time, end_time)));
GFXRECON_WRITE_CONSOLE("File processing time: %d seconds", time_in_seconds);
gfxrecon::util::Log::Release();
return 0;
}
|