Skip to content

Commit c2d65fe

Browse files
authored
Update convert_pagedattn_inputs transfprmation (disabled sve for apple))
1 parent 123489d commit c2d65fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/transformations/src/transformations/common_optimizations/convert_pagedattn_inputs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ ov::pass::ConvertPagedAttnInputs::ConvertPagedAttnInputs(const KVCacheConfig& co
7474
const auto pa_op = m.get_match_root();
7575
auto key_cache = ov::as_type_ptr<ov::op::v0::Parameter>(pa_op->get_input_node_shared_ptr(3));
7676
auto value_cache = ov::as_type_ptr<ov::op::v0::Parameter>(pa_op->get_input_node_shared_ptr(4));
77-
#if defined(OPENVINO_ARCH_ARM64)
77+
#if defined(OPENVINO_ARCH_ARM64) && !defined(__APPLE__)
7878
auto format_cache_precision = [](ov::element::Type cache_precision, ov::element::Type infer_precision) {
7979
return ov::element::u8;
8080
};

0 commit comments

Comments
 (0)