Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for vulkan-shader-profiler external passes #5512

Merged
merged 1 commit into from Mar 15, 2024

Conversation

rjodinchr
Copy link
Contributor

@CLAassistant
Copy link

CLAassistant commented Dec 28, 2023

CLA assistant check
All committers have signed the CLA.

source/table.h Outdated Show resolved Hide resolved
@rjodinchr
Copy link
Contributor Author

rjodinchr commented Jan 5, 2024

Also, please note that this PR introduces a dependency of spirv-tools on vulkan-headers

@dneto0
Copy link
Collaborator

dneto0 commented Mar 7, 2024

I haven't looked deeply. Requiring a depdency on vulkan-headers seems unfortunate.

@rjodinchr
Copy link
Contributor Author

rjodinchr commented Mar 8, 2024

I have removed the dependency on vulkan-headers.
I will keep the passes in another repository, but those changes are still needed for vksp passes to work

@rjodinchr rjodinchr changed the title add passes for vulkan-shader-profiler add support for vulkan-shader-profiler external passes Mar 8, 2024
@@ -511,7 +511,7 @@ const Constant* ConstantManager::GetIntConst(uint64_t val, int32_t bitWidth,
// If the value is more than 32-bit, we need to split the operands into two
// 32-bit integers.
return GetConstant(
int_type, {static_cast<uint32_t>(val >> 32), static_cast<uint32_t>(val)});
int_type, {static_cast<uint32_t>(val), static_cast<uint32_t>(val >> 32)});
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the right fix.

OpConstant says

Types 32 bits wide or smaller take one word. Larger types take multiple words, with low-order words appearing first.

Too bad this wasn't caught by a unit test. I won't make you write one now.

@@ -74,7 +74,7 @@ typedef struct spv_ext_inst_desc_t {
const uint32_t ext_inst;
const uint32_t numCapabilities;
const spv::Capability* capabilities;
const spv_operand_type_t operandTypes[16]; // TODO: Smaller/larger?
const spv_operand_type_t operandTypes[40]; // vksp needs at least 40
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These tables are pretty dumb. I'd like to refactor them for compactness.

@rjodinchr rjodinchr requested a review from dneto0 March 8, 2024 18:03
@dneto0 dneto0 enabled auto-merge (squash) March 15, 2024 17:16
@dneto0 dneto0 merged commit f20663c into KhronosGroup:main Mar 15, 2024
24 checks passed
@rjodinchr rjodinchr deleted the vksp branch March 16, 2024 09:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants