Skip to content

Commit 3b3585f

Browse files
authored
DRAFT: Native slangpy v1 (#8)
* Initial work to get native slangpy running again * All slangpy tests now working * Start native optimizations * NativeType->NativeMarshall * Start on native value and buffers * Fix interfaces tests * Native NDBuffer largely working * Pass stride in to native ndbuffer * Fix vector/set tests, disable numpy ones until next pass * Remove emulated tests
1 parent 02ce030 commit 3b3585f

32 files changed

+424
-755
lines changed

.github/workflows/ci.yml

+4-11
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,12 @@ jobs:
4949
- name: Install slangpy
5050
run: python .build_agent/ci.py install
5151

52-
- name: Run tests (vulkan / emulated)
53-
run: python .build_agent/ci.py test --device=vulkan --emulated
52+
- name: Run tests (vulkan / native)
53+
run: python .build_agent/ci.py test --device=vulkan
5454

55-
#- name: Run tests (vulkan / native)
56-
# run: python .build_agent/ci.py test --device=vulkan
57-
58-
- name: Run tests (d3d12 / emulated)
55+
- name: Run tests (d3d12 / native)
5956
if: matrix.os=='windows'
60-
run: python .build_agent/ci.py test --device=d3d12 --emulated
61-
62-
#- name: Run tests (d3d12 / native)
63-
# if: matrix.os=='windows'
64-
# run: python .build_agent/ci.py test --device=d3d12
57+
run: python .build_agent/ci.py test --device=d3d12
6558

6659
- name: Unit Test Report
6760
uses: mikepenz/action-junit-report@v4

0 commit comments

Comments
 (0)