Skip to content

Commit

Permalink
Fixed merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jim19930609 committed Feb 10, 2022
1 parent 6f54c3d commit a92bfd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def GeneratePythonCFunction(fwd_api_name, forward_inputs_position_map,
dygraph_function_call_list = ["" for i in range(num_args)]
get_eager_tensor_str = ""
for name, (ttype, pos) in forward_inputs_position_map.items():
get_eager_tensor_str += f" auto& {name} = GetEagerTensorPtrFromArgs(\"{fwd_api_name}\", \"{name}\", args, {pos}, false);\n"
get_eager_tensor_str += f" auto& {name} = GetTensorFromArgs(\"{fwd_api_name}\", \"{name}\", args, {pos}, false);\n"
dygraph_function_call_list[pos] = f"{name}"

parse_attributes_str = " paddle::framework::AttributeMap attrs;\n"
Expand Down

1 comment on commit a92bfd2

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕵️ CI failures summary

🔍 PR: #39233 Commit ID: a92bfd2 contains failed CI.

🔹 Failed: PR-CI-Coverage

test_failed
2022-02-10 12:57:46 The following tests FAILED:
2022-02-10 12:57:46 275 - heter_listen_and_server_test (Child aborted)
2022-02-10 12:57:46 1522 - test_parallel_dygraph_control_flow (Timeout)
2022-02-10 12:57:46 273 - send_and_recv_cpu_test (Child aborted)
2022-02-10 12:57:46 275 - heter_listen_and_server_test (Child aborted)
2022-02-10 12:57:46 + EXCODE=8
2022-02-10 12:57:46 + echo 8
2022-02-10 12:57:46 8
2022-02-10 12:57:46 + echo 'ipipe_log_param_EXCODE: 8'
2022-02-10 12:57:46 ipipe_log_param_EXCODE: 8
2022-02-10 12:57:46 + '[' 8 -ne 0 ']'
2022-02-10 12:57:46 + '[' 8 -ne 9 ']'
2022-02-10 12:57:46 + exit 8
2022-02-10 12:57:46 {build code state=8}

Please sign in to comment.