Skip to content

Commit

Permalink
Fix missing extra_params when constructing operands (#2999)
Browse files Browse the repository at this point in the history
  • Loading branch information
fyrestone authored May 6, 2022
1 parent 263c841 commit 4a9392d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mars/core/operand/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ def __init__(self: OperandType, *args, **kwargs):

@classmethod
def _parse_kwargs(cls, kwargs: Dict[str, Any]):
kwargs["extra_params"] = extras = AttributeDict()
extra_params = kwargs.pop("extra_params", {})
kwargs["extra_params"] = extras = AttributeDict(extra_params)
kwargs["scheduling_hint"] = scheduling_hint = kwargs.get(
"scheduling_hint", SchedulingHint()
)
Expand Down
2 changes: 2 additions & 0 deletions mars/core/operand/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ class MyOperand5(MyOperand4):


def test_execute():
op = MyOperand(extra_params={"my_extra_params": 1})
assert op.extra_params["my_extra_params"] == 1
MyOperand.register_executor(lambda *_: 2)
assert execute(dict(), MyOperand(_key="1")) == 2
assert execute(dict(), MyOperand2(_key="1")) == 2
Expand Down

0 comments on commit 4a9392d

Please sign in to comment.