File tree 2 files changed +2
-4
lines changed
plugins/intel_gpu/src/graph/impls/ocl
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -177,9 +177,8 @@ void PagedAttentionExtension::validate_and_infer_types() {
177
177
get_input_partial_shape (15 ).rank ().get_length (),
178
178
" ." );
179
179
NODE_VALIDATION_CHECK (this ,
180
- get_input_element_type (15 ).is_dynamic () ||
181
- get_input_element_type (15 ) == element::f32 ||
182
- get_input_element_type (15 ) == element::f16,
180
+ get_input_element_type (15 ).is_dynamic () || get_input_element_type (15 ) == element::f32 ||
181
+ get_input_element_type (15 ) == element::f16,
183
182
" Element type of `rotation_trig_lut` input should be f32, but it is " ,
184
183
get_input_element_type (15 ),
185
184
" ." );
Original file line number Diff line number Diff line change @@ -341,7 +341,6 @@ struct paged_attention_impl : multi_stage_primitive<paged_attention> {
341
341
}
342
342
343
343
event::ptr execute_impl (const std::vector<event::ptr>& events, paged_attention_inst& instance) override {
344
- const auto & desc = instance.get_impl_params ()->typed_desc <paged_attention>();
345
344
const auto stage = get_paged_attention_stage (*instance.get_impl_params ());
346
345
const auto is_mixed_mode = stage == PagedAttentionStage::MIXED;
347
346
You can’t perform that action at this time.
0 commit comments