[OpenCL]remove process_type to fix FP16 result error #10451
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR devices
OpenCL
PR types
Bug fixes
PR changes
OP
Description
之前离职员工tiantian留下的BUG。
对于某些特殊模型,会设置process_type为2, 禁止io_copy的FP16模式(触发机制和意义不明,会导致yolov5_s等推理结果出错)
导致FP16的Tensor,被当成FP32使用。精度混乱。
这里删除了 param.process_type != 2的判定条件。
强制在FP16模式,使用FP16的逻辑处理。