未验证 提交 c732c831 编写于 作者: J Jiabin Yang 提交者: GitHub

support pylayer with different input dtype (#37974)

上级 b4e44b0a
...@@ -54,7 +54,7 @@ class PyLayerOp : public framework::OperatorWithKernel { ...@@ -54,7 +54,7 @@ class PyLayerOp : public framework::OperatorWithKernel {
protected: protected:
framework::OpKernelType GetExpectedKernelType( framework::OpKernelType GetExpectedKernelType(
const framework::ExecutionContext& ctx) const override { const framework::ExecutionContext& ctx) const override {
auto data_type = OperatorWithKernel::IndicateVarDataType(ctx, "X"); auto data_type = paddle::framework::proto::VarType::Type::VarType_Type_FP32;
return framework::OpKernelType(data_type, ctx.device_context()); return framework::OpKernelType(data_type, ctx.device_context());
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册