diff options
| author | Sai Praveen Bangaru <31557731+saipraveenb25@users.noreply.github.com> | 2024-10-28 15:47:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-28 15:47:58 -0400 |
| commit | b61be5e6fb7fe1c4ec8228cdf73f49f11e5a0ac9 (patch) | |
| tree | 0e392546b41a55d36a874f2a82110867e6dd422c /source/core | |
| parent | 0557a199d2eb205bf133c8fc111cce3a19336fde (diff) | |
Assorted auto-diff enhancements for increased performance & more streamlined auto-diff results (#5394)
* Various AD enhancements
* Fix issue with pt-loop test
* Update pt-loop.slang
* More fixes for perf. Final minimal context test now passes.
* Fix issue with loop-elimination pass not running after dce
* Try fix wgpu test by removing select operator
* Disable wgpu
* Delete out.wgsl
* Remove comments
* Update slang-ir-util.cpp
* Fix header relative paths for slang-embed
* Disbale wgpu for a few other tests
* Better way of determining which params to ignore for side-effects
* Update slang-ir-dce.cpp
* Fix issue with circular reference from previous AD pass being left behind for the next AD pass
* Update slang-ir-dce.cpp
Diffstat (limited to 'source/core')
| -rw-r--r-- | source/core/slang-dictionary.h | 2 | ||||
| -rw-r--r-- | source/core/slang-hash.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/core/slang-dictionary.h b/source/core/slang-dictionary.h index 9c445c3c9..9c753ffcd 100644 --- a/source/core/slang-dictionary.h +++ b/source/core/slang-dictionary.h @@ -9,7 +9,7 @@ #include "slang-math.h" #include "slang-hash.h" -#include <ankerl/unordered_dense.h> +#include "../../external/unordered_dense/include/ankerl/unordered_dense.h" #include <initializer_list> diff --git a/source/core/slang-hash.h b/source/core/slang-hash.h index 3e255f7db..ff0cdc181 100644 --- a/source/core/slang-hash.h +++ b/source/core/slang-hash.h @@ -4,7 +4,7 @@ #include "../../include/slang.h" #include "slang-math.h" -#include <ankerl/unordered_dense.h> +#include "../../external/unordered_dense/include/ankerl/unordered_dense.h" #include <cstring> #include <type_traits> |
