-
Notifications
You must be signed in to change notification settings - Fork 44
95 implement embree runner #96
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
Open
jmaack24
wants to merge
25
commits into
develop
Choose a base branch
from
95-implement-embree-runner
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
516450c
Initial structure for EmbreeRunner
jmaack24 6a4c716
Bounding box calculations added to surface and aperture structures
jmaack24 98dedec
Add tests for aperture bounding box
jmaack24 9d5e69c
Separate logging from thread manager
jmaack24 aa82d59
Change embree runner to inherit from native runner
jmaack24 944e179
Fix CI builds
jmaack24 7ea1104
Add tests for surface bounding box
jmaack24 6b47441
Add logger to trace_embree function
jmaack24 5ec6524
Add EmbreeRunner validation test and another short unit test
jmaack24 fc02507
Set virtual flag for reading input files; update embree and native ru…
jmaack24 2d2b811
Add unit tests for thread manager
jmaack24 e55fad9
Move embree initialization to part of runner setup
jmaack24 e4465f2
Commonize interaction type determination between embree and native ru…
jmaack24 9b52531
EmbreeRunner multi-threading implementation
jmaack24 a5971e7
Address copilot comments
jmaack24 4a911fa
Update CI and coverage work flows to build Embree
jmaack24 878f6eb
Fix work flow errors
jmaack24 6fe5cce
Change windows build to use downloaded binary
jmaack24 73919c2
Attempt to fix windows build
jmaack24 cf6f3c0
Fix windows CI hopefully. Maybe.
jmaack24 5050963
Pass along number of threads value to embree; another attempt to fix …
jmaack24 c4ff4bf
Fix linux compiler warning; attempt whatever to fix windows ci
jmaack24 079ff23
Try again
jmaack24 17afb27
Updates to README for Embree install and SolTrace build; disable lega…
jmaack24 8487343
Merge branch 'develop' into 95-implement-embree-runner
jmaack24 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -21,7 +21,7 @@ The `pysoltrace` API is capable of running multi-threaded simulations, generatin | |||||
|
|
||||||
| The API requires the compiled coretrace library. Project files for building this library are generated using CMake as outlined in the steps below. It is possible to build only coretrace and not build the graphical interface by following the steps 1-7, but only building the `coretrace_api` project in step 7.vii. | ||||||
|
|
||||||
| ## Steps for Building SolTrace | ||||||
| ## Steps for Building SolTrace (Legacy) | ||||||
|
|
||||||
| These are the general steps you need to follow to set up your computer for developing SolTrace: | ||||||
|
|
||||||
|
|
@@ -78,6 +78,62 @@ These are the general steps you need to follow to set up your computer for devel | |||||
|
|
||||||
| Note that output is NOT stored in the ```build-soltrace/``` directory! | ||||||
|
|
||||||
| ## Steps for Building SolTrace (work in progress) | ||||||
|
|
||||||
| SolTrace has been updated to use multiple ray tracing engines in addition to the prior implementation. Currently, there is no graphical user interface (it is underdevelopment). | ||||||
|
||||||
| SolTrace has been updated to use multiple ray tracing engines in addition to the prior implementation. Currently, there is no graphical user interface (it is underdevelopment). | |
| SolTrace has been updated to use multiple ray tracing engines in addition to the prior implementation. Currently, there is no graphical user interface (it is under development). |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Windows Embree installation script extracts to a directory path that includes the version number in the zip, but the code assumes a specific directory structure. The commented-out lines suggest there was an attempt to find the embree directory dynamically. This could break if Embree's directory structure changes between versions. Consider making the path detection more robust.