Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【PaddlePaddle Hackathon 2】1、为 Paddle 新增 finfo API #40334

Closed
TCChenlong opened this issue Mar 8, 2022 · 3 comments
Closed

【PaddlePaddle Hackathon 2】1、为 Paddle 新增 finfo API #40334

TCChenlong opened this issue Mar 8, 2022 · 3 comments

Comments

@TCChenlong
Copy link
Contributor

TCChenlong commented Mar 8, 2022

(此 ISSUE 为 PaddlePaddle Hackathon 第二期活动的任务 ISSUE,更多详见 【PaddlePaddle Hackathon 第二期】任务总览

【任务说明】

任务标题:为 Paddle 新增 finfo API

技术标签:深度学习框架,Python,C++

任务难度:中等

详细描述: finfo计算浮点数类型的数值限制,输入参数为Paddle浮点数类型(paddle.float16/paddle.float32/paddle.float64/paddle.complex64/paddle.complex128),返回包含如下属性对象:

属性 类型 描述
bits int 该类型占用的bit数
eps float 该类型所能表示的epsilon值,即满足1.0 + eps != 1.0的最小值,参考https://numpy.org/doc/stable/reference/generated/numpy.finfo.html
min float 该类型能表示的最小值
max float 该类型能表示最大值
tiny float 该类型所能表示的最小正数
resolution float 该类型十进制形式精度 10**-precision. 其中precision为IEEE754标准中该类型有效数字位数

此任务目标是为Paddle新增finfo API,调用路径为paddle.finfo 。更详细内容可以参考numpy.finfo https://numpy.org/doc/stable/reference/generated/numpy.finfo.html

【提交流程】

请按 新增API 开发&提交流程中的描述,完成任务提交过程中的相关步骤。

【提交内容】

  • API 的设计文档,并提 PR 至 PaddlePaddle/community 的 rfcs/APIs 目录
  • Python 实现代码 & 英文 API 文档,在 Paddle repo 的 python/paddle目录
  • C ++ 实现代码,在 Paddle repo 的 paddle/phi/kernels 目录
  • 单测代码,在 Paddle repo 的 python/paddle/fluid/tests/unittests 目录
  • 中文API文档,在 docs repo 的 docs/api/paddle/ 目录

【合入标准】

【技术要求】

  • 熟悉 IEEE754浮点数标准
  • 熟练掌握 C++ 、Python
  • 熟悉C++标准库 std::numeric_limits

【参考内容】

【答疑交流】

  • 如果在开发中对于上述任务有任何问题,欢迎在本 ISSUE 下留言交流。
  • 对于开发中的共性问题,在活动过程中,会定期组织答疑,请大家关注官网&QQ群的通知,及时参与
@paddle-bot-old
Copy link

paddle-bot-old bot commented Mar 8, 2022

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看官网API文档常见问题历史IssueAI社区来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

@peter5232
Copy link

您好,我正在参加PaddlePaddle Hackathon 4,我报名了这个API实现,我参照这个文档https://github.com/PaddlePaddle/community/blob/master/rfcs/APIs/20220330_api_design_for_finfo.md,
API实现方案中的在paddle/fluid/framework/Info.h与Info.cc下新增实现函数 定义class为Tinfo(借鉴Torch的结构设计,将finfo与iinfo合并为一个类进行实现) ,这个Info.h和Info.c我都没有找到,我在https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/fluid/pybind/pybind.cc 找到了关于IInfo的定义,这句话的意思是要新建这个Info.h和Info.cc吗?

@luotao1
Copy link
Contributor

luotao1 commented May 12, 2023

close due to the following PR is merged:

@luotao1 luotao1 closed this as completed May 12, 2023
@paddle-bot paddle-bot bot added the status/close 已关闭 label May 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants