added typetree support for memcpy

This commit is contained in:
Karan Janthe
2025-08-23 23:10:48 +00:00
parent 5d3ebc3804
commit 664e83b3e7
21 changed files with 135 additions and 34 deletions

View File

@@ -25,6 +25,7 @@ pub(crate) enum CConcreteType {
DT_Half = 3,
DT_Float = 4,
DT_Double = 5,
// FIXME(KMJ-007): handle f128 using long double here(https://github.com/EnzymeAD/Enzyme/issues/1600)
DT_Unknown = 6,
}