writers: Add flag to disable workgroup memory init
Bug: tint:1003 Change-Id: Ia30a2c51b5d3f8c6a01bed5299eac51dc3ad6337 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/58843 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Auto-Submit: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
This commit is contained in:
parent
3d441d48bb
commit
701820b1f4
|
@ -99,7 +99,7 @@
|
|||
},
|
||||
"windows": {
|
||||
// Generates a GN build directory at 'out/<build-type>' with the
|
||||
// is_debug argument set to to true iff the build-type is Debug.
|
||||
// is_debug argument set to true iff the build-type is Debug.
|
||||
// A symbolic link to this build directory is created at 'out/active'
|
||||
// which is used to track the active build directory.
|
||||
"command": "/C",
|
||||
|
@ -143,4 +143,4 @@
|
|||
"description": "The type of build",
|
||||
},
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,6 +54,7 @@ struct Options {
|
|||
|
||||
bool parse_only = false;
|
||||
bool dump_ast = false;
|
||||
bool disable_workgroup_init = false;
|
||||
bool validate = false;
|
||||
bool demangle = false;
|
||||
bool dump_inspector_bindings = false;
|
||||
|
@ -93,6 +94,7 @@ const char kUsage[] = R"(Usage: tint [options] <input-file>
|
|||
robustness
|
||||
--parse-only -- Stop after parsing the input
|
||||
--dump-ast -- Dump the generated AST to stdout
|
||||
--disable-workgroup-init -- Disable workgroup memory zero initialization.
|
||||
--demangle -- Preserve original source names. Demangle them.
|
||||
Affects AST dumping, and text-based output languages.
|
||||
--dump-inspector-bindings -- Dump reflection data about bindins to stdout.
|
||||
|
@ -401,6 +403,8 @@ bool ParseArgs(const std::vector<std::string>& args, Options* opts) {
|
|||
opts->parse_only = true;
|
||||
} else if (arg == "--dump-ast") {
|
||||
opts->dump_ast = true;
|
||||
} else if (arg == "--disable-workgroup-init") {
|
||||
opts->disable_workgroup_init = true;
|
||||
} else if (arg == "--demangle") {
|
||||
opts->demangle = true;
|
||||
} else if (arg == "--dump-inspector-bindings") {
|
||||
|
@ -603,6 +607,7 @@ bool GenerateSpirv(const tint::Program* program, const Options& options) {
|
|||
#if TINT_BUILD_SPV_WRITER
|
||||
// TODO(jrprice): Provide a way for the user to set non-default options.
|
||||
tint::writer::spirv::Options gen_options;
|
||||
gen_options.disable_workgroup_init = options.disable_workgroup_init;
|
||||
auto result = tint::writer::spirv::Generate(program, gen_options);
|
||||
if (!result.success) {
|
||||
PrintWGSL(std::cerr, *program);
|
||||
|
@ -670,6 +675,7 @@ bool GenerateMsl(const tint::Program* program, const Options& options) {
|
|||
#if TINT_BUILD_MSL_WRITER
|
||||
// TODO(jrprice): Provide a way for the user to set non-default options.
|
||||
tint::writer::msl::Options gen_options;
|
||||
gen_options.disable_workgroup_init = options.disable_workgroup_init;
|
||||
auto result = tint::writer::msl::Generate(program, gen_options);
|
||||
if (!result.success) {
|
||||
PrintWGSL(std::cerr, *program);
|
||||
|
@ -721,6 +727,7 @@ bool GenerateHlsl(const tint::Program* program, const Options& options) {
|
|||
#if TINT_BUILD_HLSL_WRITER
|
||||
// TODO(jrprice): Provide a way for the user to set non-default options.
|
||||
tint::writer::hlsl::Options gen_options;
|
||||
gen_options.disable_workgroup_init = options.disable_workgroup_init;
|
||||
auto result = tint::writer::hlsl::Generate(program, gen_options);
|
||||
if (!result.success) {
|
||||
PrintWGSL(std::cerr, *program);
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include "src/transform/zero_init_workgroup_memory.h"
|
||||
|
||||
TINT_INSTANTIATE_TYPEINFO(tint::transform::Hlsl);
|
||||
TINT_INSTANTIATE_TYPEINFO(tint::transform::Hlsl::Config);
|
||||
|
||||
namespace tint {
|
||||
namespace transform {
|
||||
|
@ -38,18 +39,22 @@ namespace transform {
|
|||
Hlsl::Hlsl() = default;
|
||||
Hlsl::~Hlsl() = default;
|
||||
|
||||
Output Hlsl::Run(const Program* in, const DataMap&) {
|
||||
Output Hlsl::Run(const Program* in, const DataMap& inputs) {
|
||||
Manager manager;
|
||||
DataMap data;
|
||||
|
||||
auto* cfg = inputs.Get<Config>();
|
||||
|
||||
// Attempt to convert `loop`s into for-loops. This is to try and massage the
|
||||
// output into something that will not cause FXC to choke or misbehave.
|
||||
manager.Add<FoldTrivialSingleUseLets>();
|
||||
manager.Add<LoopToForLoop>();
|
||||
|
||||
// ZeroInitWorkgroupMemory must come before CanonicalizeEntryPointIO as
|
||||
// ZeroInitWorkgroupMemory may inject new builtin parameters.
|
||||
manager.Add<ZeroInitWorkgroupMemory>();
|
||||
if (!cfg || !cfg->disable_workgroup_init) {
|
||||
// ZeroInitWorkgroupMemory must come before CanonicalizeEntryPointIO as
|
||||
// ZeroInitWorkgroupMemory may inject new builtin parameters.
|
||||
manager.Add<ZeroInitWorkgroupMemory>();
|
||||
}
|
||||
manager.Add<CanonicalizeEntryPointIO>();
|
||||
manager.Add<InlinePointerLets>();
|
||||
// Simplify cleans up messy `*(&(expr))` expressions from InlinePointerLets.
|
||||
|
@ -97,5 +102,9 @@ void Hlsl::AddEmptyEntryPoint(CloneContext& ctx) const {
|
|||
ctx.dst->WorkgroupSize(1)});
|
||||
}
|
||||
|
||||
Hlsl::Config::Config(bool disable_wi) : disable_workgroup_init(disable_wi) {}
|
||||
Hlsl::Config::Config(const Config&) = default;
|
||||
Hlsl::Config::~Config() = default;
|
||||
|
||||
} // namespace transform
|
||||
} // namespace tint
|
||||
|
|
|
@ -29,6 +29,23 @@ namespace transform {
|
|||
/// behavior.
|
||||
class Hlsl : public Castable<Hlsl, Transform> {
|
||||
public:
|
||||
/// Configuration options for the Hlsl sanitizer transform.
|
||||
struct Config : public Castable<Data, transform::Data> {
|
||||
/// Constructor
|
||||
/// @param disable_workgroup_init `true` to disable workgroup memory zero
|
||||
/// initialization
|
||||
explicit Config(bool disable_workgroup_init = false);
|
||||
|
||||
/// Copy constructor
|
||||
Config(const Config&);
|
||||
|
||||
/// Destructor
|
||||
~Config() override;
|
||||
|
||||
/// Set to `true` to disable workgroup memory zero initialization
|
||||
bool disable_workgroup_init = false;
|
||||
};
|
||||
|
||||
/// Constructor
|
||||
Hlsl();
|
||||
~Hlsl() override;
|
||||
|
|
|
@ -73,9 +73,11 @@ Output Msl::Run(const Program* in, const DataMap& inputs) {
|
|||
}
|
||||
}
|
||||
|
||||
// ZeroInitWorkgroupMemory must come before CanonicalizeEntryPointIO as
|
||||
// ZeroInitWorkgroupMemory may inject new builtin parameters.
|
||||
manager.Add<ZeroInitWorkgroupMemory>();
|
||||
if (!cfg || !cfg->disable_workgroup_init) {
|
||||
// ZeroInitWorkgroupMemory must come before CanonicalizeEntryPointIO as
|
||||
// ZeroInitWorkgroupMemory may inject new builtin parameters.
|
||||
manager.Add<ZeroInitWorkgroupMemory>();
|
||||
}
|
||||
manager.Add<CanonicalizeEntryPointIO>();
|
||||
manager.Add<ExternalTextureTransform>();
|
||||
manager.Add<PromoteInitializersToConstVar>();
|
||||
|
@ -280,9 +282,12 @@ void Msl::HandleModuleScopeVariables(CloneContext& ctx) const {
|
|||
}
|
||||
}
|
||||
|
||||
Msl::Config::Config(uint32_t buffer_size_ubo_idx, uint32_t sample_mask)
|
||||
Msl::Config::Config(uint32_t buffer_size_ubo_idx,
|
||||
uint32_t sample_mask,
|
||||
bool disable_wi)
|
||||
: buffer_size_ubo_index(buffer_size_ubo_idx),
|
||||
fixed_sample_mask(sample_mask) {}
|
||||
fixed_sample_mask(sample_mask),
|
||||
disable_workgroup_init(disable_wi) {}
|
||||
Msl::Config::Config(const Config&) = default;
|
||||
Msl::Config::~Config() = default;
|
||||
|
||||
|
|
|
@ -33,8 +33,11 @@ class Msl : public Castable<Msl, Transform> {
|
|||
/// Constructor
|
||||
/// @param buffer_size_ubo_idx the index to use for the buffer size UBO
|
||||
/// @param sample_mask the fixed sample mask to use for fragment shaders
|
||||
explicit Config(uint32_t buffer_size_ubo_idx,
|
||||
uint32_t sample_mask = 0xFFFFFFFF);
|
||||
/// @param disable_workgroup_init `true` to disable workgroup memory zero
|
||||
/// initialization
|
||||
Config(uint32_t buffer_size_ubo_idx,
|
||||
uint32_t sample_mask = 0xFFFFFFFF,
|
||||
bool disable_workgroup_init = false);
|
||||
|
||||
/// Copy constructor
|
||||
Config(const Config&);
|
||||
|
@ -43,10 +46,13 @@ class Msl : public Castable<Msl, Transform> {
|
|||
~Config() override;
|
||||
|
||||
/// The index to use when generating a UBO to receive storage buffer sizes.
|
||||
uint32_t buffer_size_ubo_index;
|
||||
uint32_t buffer_size_ubo_index = 0;
|
||||
|
||||
/// The fixed sample mask to combine with fragment shader outputs.
|
||||
uint32_t fixed_sample_mask;
|
||||
uint32_t fixed_sample_mask = 0xFFFFFFFF;
|
||||
|
||||
/// Set to `true` to disable workgroup memory zero initialization
|
||||
bool disable_workgroup_init = false;
|
||||
};
|
||||
|
||||
/// Information produced by the sanitizer that users may need to act on.
|
||||
|
|
|
@ -45,8 +45,12 @@ Spirv::Spirv() = default;
|
|||
Spirv::~Spirv() = default;
|
||||
|
||||
Output Spirv::Run(const Program* in, const DataMap& data) {
|
||||
auto* cfg = data.Get<Config>();
|
||||
|
||||
Manager manager;
|
||||
manager.Add<ZeroInitWorkgroupMemory>();
|
||||
if (!cfg || !cfg->disable_workgroup_init) {
|
||||
manager.Add<ZeroInitWorkgroupMemory>();
|
||||
}
|
||||
manager.Add<InlinePointerLets>(); // Required for arrayLength()
|
||||
manager.Add<Simplify>(); // Required for arrayLength()
|
||||
manager.Add<FoldConstants>();
|
||||
|
@ -58,8 +62,6 @@ Output Spirv::Run(const Program* in, const DataMap& data) {
|
|||
return transformedInput;
|
||||
}
|
||||
|
||||
auto* cfg = data.Get<Config>();
|
||||
|
||||
ProgramBuilder out;
|
||||
CloneContext ctx(&out, &transformedInput.program);
|
||||
HandleEntryPointIOTypes(ctx);
|
||||
|
@ -427,7 +429,8 @@ void Spirv::HoistToOutputVariables(CloneContext& ctx,
|
|||
}
|
||||
}
|
||||
|
||||
Spirv::Config::Config(bool emit_vps) : emit_vertex_point_size(emit_vps) {}
|
||||
Spirv::Config::Config(bool emit_vps, bool disable_wi)
|
||||
: emit_vertex_point_size(emit_vps), disable_workgroup_init(disable_wi) {}
|
||||
|
||||
Spirv::Config::Config(const Config&) = default;
|
||||
Spirv::Config::~Config() = default;
|
||||
|
|
|
@ -35,7 +35,10 @@ class Spirv : public Castable<Spirv, Transform> {
|
|||
struct Config : public Castable<Config, Data> {
|
||||
/// Constructor
|
||||
/// @param emit_vertex_point_size `true` to generate a PointSize builtin
|
||||
explicit Config(bool emit_vertex_point_size = false);
|
||||
/// @param disable_workgroup_init `true` to disable workgroup memory zero
|
||||
/// initialization
|
||||
Config(bool emit_vertex_point_size = false,
|
||||
bool disable_workgroup_init = false);
|
||||
|
||||
/// Copy constructor.
|
||||
Config(const Config&);
|
||||
|
@ -49,7 +52,10 @@ class Spirv : public Castable<Spirv, Transform> {
|
|||
|
||||
/// Set to `true` to generate a PointSize builtin and have it set to 1.0
|
||||
/// from all vertex shaders in the module.
|
||||
bool emit_vertex_point_size;
|
||||
bool emit_vertex_point_size = false;
|
||||
|
||||
/// Set to `true` to disable workgroup memory zero initialization
|
||||
bool disable_workgroup_init = false;
|
||||
};
|
||||
|
||||
/// Constructor
|
||||
|
|
|
@ -25,12 +25,14 @@ Result::Result() = default;
|
|||
Result::~Result() = default;
|
||||
Result::Result(const Result&) = default;
|
||||
|
||||
Result Generate(const Program* program, const Options&) {
|
||||
Result Generate(const Program* program, const Options& options) {
|
||||
Result result;
|
||||
|
||||
// Run the HLSL sanitizer.
|
||||
transform::Hlsl sanitizer;
|
||||
auto output = sanitizer.Run(program);
|
||||
transform::DataMap transform_input;
|
||||
transform_input.Add<transform::Hlsl::Config>(options.disable_workgroup_init);
|
||||
auto output = sanitizer.Run(program, transform_input);
|
||||
if (!output.program.IsValid()) {
|
||||
result.success = false;
|
||||
result.error = output.program.Diagnostics().str();
|
||||
|
|
|
@ -35,7 +35,10 @@ namespace hlsl {
|
|||
class GeneratorImpl;
|
||||
|
||||
/// Configuration options used for generating HLSL.
|
||||
struct Options {};
|
||||
struct Options {
|
||||
/// Set to `true` to disable workgroup memory zero initialization
|
||||
bool disable_workgroup_init = false;
|
||||
};
|
||||
|
||||
/// The result produced when generating HLSL.
|
||||
struct Result {
|
||||
|
|
|
@ -32,7 +32,8 @@ Result Generate(const Program* program, const Options& options) {
|
|||
transform::Msl sanitizer;
|
||||
transform::DataMap transform_input;
|
||||
transform_input.Add<transform::Msl::Config>(options.buffer_size_ubo_index,
|
||||
options.fixed_sample_mask);
|
||||
options.fixed_sample_mask,
|
||||
options.disable_workgroup_init);
|
||||
auto output = sanitizer.Run(program, transform_input);
|
||||
if (!output.program.IsValid()) {
|
||||
result.success = false;
|
||||
|
|
|
@ -39,6 +39,9 @@ struct Options {
|
|||
/// The fixed sample mask to combine with fragment shader outputs.
|
||||
/// Defaults to 0xFFFFFFFF.
|
||||
uint32_t fixed_sample_mask = 0xFFFFFFFF;
|
||||
|
||||
/// Set to `true` to disable workgroup memory zero initialization
|
||||
bool disable_workgroup_init = false;
|
||||
};
|
||||
|
||||
/// The result produced when generating MSL.
|
||||
|
|
|
@ -31,7 +31,8 @@ Result Generate(const Program* program, const Options& options) {
|
|||
// Run the SPIR-V sanitizer.
|
||||
transform::Spirv sanitizer;
|
||||
transform::DataMap transform_input;
|
||||
transform_input.Add<transform::Spirv::Config>(options.emit_vertex_point_size);
|
||||
transform_input.Add<transform::Spirv::Config>(options.emit_vertex_point_size,
|
||||
options.disable_workgroup_init);
|
||||
auto output = sanitizer.Run(program, transform_input);
|
||||
if (!output.program.IsValid()) {
|
||||
result.success = false;
|
||||
|
|
|
@ -38,6 +38,9 @@ struct Options {
|
|||
/// Set to `true` to generate a PointSize builtin and have it set to 1.0
|
||||
/// from all vertex shaders in the module.
|
||||
bool emit_vertex_point_size = true;
|
||||
|
||||
/// Set to `true` to disable workgroup memory zero initialization
|
||||
bool disable_workgroup_init = false;
|
||||
};
|
||||
|
||||
/// The result produced when generating SPIR-V.
|
||||
|
|
Loading…
Reference in New Issue