Skip to content

Commit 0e9d932

Browse files
committed
save work
1 parent 487c3de commit 0e9d932

File tree

6 files changed

+136
-426
lines changed

6 files changed

+136
-426
lines changed

.github/workflows/build-nabla.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ jobs:
8282
8383
- name: Package workflow artifacts
8484
run: |
85-
tar -cvf "${{ steps.set-prefix.outputs.prefix }}-profiling.tar" -C profiling .
86-
tar -cvf "${{ steps.set-prefix.outputs.prefix }}-install.tar" -C ${{ env.install }} .
85+
tar -cvf "${{ steps.set-prefix.outputs.prefix }}-profiling.tar" profiling
86+
tar -cvf "${{ steps.set-prefix.outputs.prefix }}-install.tar" ${{ env.install }}
8787
8888
- name: Upload profiling artifacts
8989
uses: actions/upload-artifact@v4

src/nbl/device/gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
args.jit_traits_output_path,
121121
buildTraitsHeader,
122122
type="JIT Members",
123-
template="oss << \"NBL_CONSTEXPR_STATIC_INLINE {} {} = ({})\" + CJITIncludeLoader::to_string({}.{});",
123+
template="oss << \"NBL_CONSTEXPR_STATIC_INLINE {} {} = ({})\" + CJITIncludeLoader::to_string({}.{}) << \";\\n\";",
124124
limits_json=limits,
125125
features_json=features,
126126
format_params=["type", "name", "type", "json_type", "cpp_name"],

src/nbl/video/CJITIncludeLoader.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ auto CJITIncludeLoader::getInclude(const system::path& searchPath, const std::st
2020
std::string CJITIncludeLoader::collectDeviceCaps(const SPhysicalDeviceLimits& limits, const SPhysicalDeviceFeatures& features)
2121
{
2222
#include "nbl/video/device_capabilities_traits_jit.h"
23-
2423
std::string start = R"===(
2524
#ifndef _NBL_BUILTIN_HLSL_JIT_DEVICE_CAPABILITIES_INCLUDED_
2625
#define _NBL_BUILTIN_HLSL_JIT_DEVICE_CAPABILITIES_INCLUDED_

0 commit comments

Comments
 (0)