From 3f071e66e0b6b22ad90ca68d5b3c3f1912b830eb Mon Sep 17 00:00:00 2001 From: Liyang Ling Date: Thu, 11 Jul 2024 01:53:43 +0800 Subject: [PATCH] Remove unused device property `support_cl_bf16_conversion` (#1598) --- third_party/intel/backend/compiler.py | 1 - 1 file changed, 1 deletion(-) diff --git a/third_party/intel/backend/compiler.py b/third_party/intel/backend/compiler.py index 500e98ef8a..60be6acc1a 100644 --- a/third_party/intel/backend/compiler.py +++ b/third_party/intel/backend/compiler.py @@ -115,7 +115,6 @@ def parse_target(self, tgt_prop) -> dict: dev_prop['sub_group_sizes'] = tgt_prop.get('sub_group_sizes', None) dev_prop['has_fp64'] = tgt_prop.get('has_fp64', None) dev_prop['device_arch'] = self.parse_device_arch(tgt_prop.get('device_arch', 0)) - dev_prop['support_cl_bf16_conversion'] = tgt_prop.get('support_cl_bf16_conversion', False) dev_prop['support_cl_sg_matmul_acc'] = tgt_prop.get('support_cl_sg_matmul_acc', False) dev_prop['support_cl_sg_matmul_acc_tf32'] = tgt_prop.get('support_cl_sg_matmul_acc_tf32', False) dev_prop['support_cl_sg_2d_block_io'] = tgt_prop.get('support_cl_sg_2d_block_io', False)