Revision 6eb0b4dea4da1fc21767c86cc0837d0c8b68063b authored by Sai Praveen Bangaru on 23 February 2023, 00:33:42 UTC, committed by GitHub on 23 February 2023, 00:33:42 UTC
* Fix crash when applying autodiff to functions with no arguments

* Fixes for loops where the break region is non-trivial

* Minor fix

* Implement array legalization correctly.

* Fix array legalization.

---------

Co-authored-by: Yong He <yhe@nvidia.com>
1 parent 0ef7aa8
Raw File
make-slang-tag-version.bat
@echo off
:: Generate slang version files 
git describe --tags > slang-tag-version.txt
set /p SLANG_TAG_VERSION=<slang-tag-version.txt
echo #define SLANG_TAG_VERSION "%SLANG_TAG_VERSION%" > slang-tag-version.h
back to top