Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 llvmlite,这就是 llvmlite 文档所说的IntType:
IntType
class llvmlite.ir.IntType(bits) 整数的类型。Python 整数位指定具有此类型的整数的位宽。 width 以位为单位的宽度。
class llvmlite.ir.IntType(bits)
整数的类型。Python 整数位指定具有此类型的整数的位宽。
width
以位为单位的宽度。
它是有符号整数还是无符号整数?如何使用其他类型的 int(例如,如果IntType是有符号的,那么如何制作无符号变量)?可能吗?