2 Star 0 Fork 0

幽径吴宫/Melodie-Boost

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
generate_ir.py 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
幽径吴宫 提交于 2022-07-26 15:40 . 提交文件
"""
This file demonstrates a trivial function "fpadd" returning the sum of
two floating-point numbers.
"""
from llvmlite import ir
# Create some useful types
double = ir.DoubleType()
fnty = ir.FunctionType(double, (double, double))
# Create an empty module...
module = ir.Module(name=__file__)
# and declare a function named "fpadd" inside it
func = ir.Function(module, fnty, name="fpadd")
# Now implement the function
block = func.append_basic_block(name="entry")
builder = ir.IRBuilder(block)
a, b = func.args
res = builder.fadd(a, b, name="res")
res_2 = builder.fadd(res, b, name="res_2")
builder.ret(res_2)
# Print the module IR
print(module)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mole-h-6011/melodie-boost.git
[email protected]:mole-h-6011/melodie-boost.git
mole-h-6011
melodie-boost
Melodie-Boost
main

搜索帮助