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 sparse texture gather intrinsics #2

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -369,15 +369,25 @@ add_subdirectory(external)

# webgpu_dawn is only available as a fetched shared library, since Dawn's nested source
# trees are too large and onerous for us to depend on.
# We ignore the failure to fetch the library, since it's not required for the build to succeed.
if(SLANG_WEBGPU_DAWN_BINARY_URL)
copy_fetched_shared_library("webgpu_dawn" "${SLANG_WEBGPU_DAWN_BINARY_URL}")
copy_fetched_shared_library(
"webgpu_dawn"
"${SLANG_WEBGPU_DAWN_BINARY_URL}"
IGNORE_FAILURE
)
endif()

# slang-tint is only available as a fetched shared library, since it's hosted in the Dawn
# repository, and Dawn's nested source trees are too large and onerous for us to depend
# on.
# We ignore the failure to fetch the library, since it's not required for the build to succeed.
if(SLANG_SLANG_TINT_BINARY_URL)
copy_fetched_shared_library("slang-tint" "${SLANG_SLANG_TINT_BINARY_URL}")
copy_fetched_shared_library(
"slang-tint"
"${SLANG_SLANG_TINT_BINARY_URL}"
IGNORE_FAILURE
)
endif()

fetch_or_build_slang_llvm()
Expand Down
4 changes: 2 additions & 2 deletions prelude/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ foreach(input ${prelude_headers})
add_custom_command(
OUTPUT ${output}
COMMAND
slang-embed "${input}" "${CMAKE_CURRENT_LIST_DIR}/../include"
${output}
slang-embed "${input}" ${output}
"-I$<JOIN:$<TARGET_PROPERTY:core,INCLUDE_DIRECTORIES>, -I>"
DEPENDS ${input} slang-embed
VERBATIM
)
Expand Down
18 changes: 17 additions & 1 deletion source/slang/glsl.meta.slang
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,17 @@ ${{{{
}
}}}}

/// Array length
__generic<T, let N : int>
public extension Array<T, N>
{
[ForceInline]
public int length()
{
return this.getCount();
}
}

//
// Section 8.1. Angle and Trigonometry Functions
//
Expand Down Expand Up @@ -9401,4 +9412,9 @@ __intrinsic_op($(kIROp_NonUniformResourceIndex))
[require(cpp_cuda_glsl_hlsl_spirv, nonuniformqualifier)]
public T nonuniformEXT(T index);


/// Debug output printing
[ForceInline]
public void debugPrintfEXT<each T>(NativeString format, expand each T args)
{
printf(format, args);
}
Loading