-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Integrate Polyscope as a mesh viewer + demo * Implement user-defined binary reduction operations on attributes * Use `memcpy_async` for reading from global memory to shared memory * API for allowing multiple queries in a single kernel * Add validation function to make sure that the internal data structure is consistent (useful for dynamic changes support in RXMesh) * Initial support for edge flip * Update README with better documentation on how to use RXMesh for writing applications
- Loading branch information
Showing
50 changed files
with
32,232 additions
and
502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Windows | |
on: [push, pull_request, workflow_dispatch] | ||
jobs: | ||
WindowsRun: | ||
runs-on: windows-latest | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: Jimver/[email protected] | ||
id: cuda-toolkit | ||
|
@@ -18,12 +18,7 @@ jobs: | |
working-directory: ${{github.workspace}}/build | ||
run: cmake ../ | ||
- name: Run VS | ||
run: | | ||
cmake --build ${{github.workspace}}/build --target RXMesh_test --config Release -j 99 | ||
cmake --build ${{github.workspace}}/build --target Geodesic --config Release -j 99 | ||
cmake --build ${{github.workspace}}/build --target MCF --config Release -j 99 | ||
cmake --build ${{github.workspace}}/build --target VertexNormal --config Release -j 99 | ||
# cmake --build ${{github.workspace}}/build --target Filtering --config Release -j 99 | ||
run: cmake --build ${{github.workspace}}/build --clean-first --config Release -j 4 | ||
#- name: Run Test | ||
# working-directory: ${{github.workspace}}/build | ||
# run: ctest --no-compress-output -T Test -C Release --output-on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
output/ | ||
input/ | ||
input/* | ||
!input/dragon.obj | ||
!input/diamond.obj | ||
build/ | ||
include/rxmesh/util/git_sha1.cpp | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.