diff --git a/paddle/fluid/framework/new_executor/interpreter/static_build.cc b/paddle/fluid/framework/new_executor/interpreter/static_build.cc index 2a9987874e4e8bcf177c0718ae16fd06b55470fe..10d75f1be6f15e3eed6e0934aee1a1c413ccb1d4 100644 --- a/paddle/fluid/framework/new_executor/interpreter/static_build.cc +++ b/paddle/fluid/framework/new_executor/interpreter/static_build.cc @@ -474,6 +474,13 @@ void FakeInitializeOutputsForFunctionKernel( ? DataType::INT64 : in_dtype; } + } else if (op_type == "searchsorted") { + bool out_int32 = op.Attr("out_int32"); + if (out_int32) { + dtype = DataType::INT32; + } else { + dtype = DataType::INT64; + } } else { VLOG(4) << "Get dtype result from InferMeta"; RuntimeInferShapeContext infer_shape_ctx(op, runtime_ctx); diff --git a/paddle/fluid/framework/new_executor/program_interpreter.cc b/paddle/fluid/framework/new_executor/program_interpreter.cc index 64ffdbef6193bcd60584490d1c9f984352a17cad..e288804e09a48e39d1f95f251d88a0323300cbe9 100644 --- a/paddle/fluid/framework/new_executor/program_interpreter.cc +++ b/paddle/fluid/framework/new_executor/program_interpreter.cc @@ -47,7 +47,6 @@ ProgramInterpreter::ProgramInterpreter(const platform::Place& place, static_build_ = FLAGS_new_executor_static_build && !FLAGS_new_executor_use_cuda_graph && - !execution_config.used_for_control_flow_op && interpreter::BlockCanBeStaticBuilt(block); exception_notifier_ = main_thread_blocker_.RegisterEvent(kExceptionCaught); diff --git a/test/legacy_test/CMakeLists.txt b/test/legacy_test/CMakeLists.txt index b5ad632433da11343bc8cd98f79fc45bf59dd5d0..7aded1aa469d652be715daa5a701a9ea37ba86c2 100644 --- a/test/legacy_test/CMakeLists.txt +++ b/test/legacy_test/CMakeLists.txt @@ -1273,6 +1273,7 @@ set(STATIC_BUILD_TESTS test_adamw_op test_arg_min_max_op test_assign_pos_op + test_bucketize_api test_bincount_op test_c_embedding_op test_decayed_adagrad_op @@ -1303,6 +1304,7 @@ set(STATIC_BUILD_TESTS test_prune_gate_by_capacity_op test_random_routing_op test_reduce_op + test_searchsorted_op test_segment_ops test_sparse_momentum_op test_sgd_op_bf16