-
Notifications
You must be signed in to change notification settings - Fork 5.9k
[SOT] Refactor MapVariable to align with Python
#71346
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
Conversation
|
你的PR提交成功,感谢你对开源项目的贡献! |
SigureMo
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
|
||
| def __init__(self, func, val_iterator, graph, tracker): | ||
| super().__init__(val_iterator, graph, tracker) | ||
| def __init__(self, func, iters, graph, tracker): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| def __init__(self, func, iters, graph, tracker): | |
| def __init__(self, fn, iters: tuple[VariableBase, ...], graph, tracker): |
MapVariable to align with Python
PR Category
Execute Infrastructure
PR Types
Improvements
Description
修改MapVariable,使之能够接受多个var输入。
PCard-66972