You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ETISS should support (integer) datatypes > 64 bits, e.g. for simulation of ML/AI accelerators. Currently the only way of handling exotic datatypes exceeding 64 bits is by using the dispatching mechanism. 128 bit integers are available in major compilers via the __int128 extension, at least for x86-64 targets. TCC does unfortunately not support this.
For types larger than 128 bits most likely some external library will have to be used, which then has to be compatible with ETISS core and the JIT engines.
The text was updated successfully, but these errors were encountered:
ETISS should support (integer) datatypes > 64 bits, e.g. for simulation of ML/AI accelerators. Currently the only way of handling exotic datatypes exceeding 64 bits is by using the dispatching mechanism. 128 bit integers are available in major compilers via the
__int128
extension, at least for x86-64 targets. TCC does unfortunately not support this.For types larger than 128 bits most likely some external library will have to be used, which then has to be compatible with ETISS core and the JIT engines.
The text was updated successfully, but these errors were encountered: