Skip to content

Commit

Permalink
generic: sycl: softmax: bugfix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
t4c1 authored and dzarukin committed Nov 1, 2024
1 parent 9845057 commit 6ae73e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpu/generic/sycl/ref_softmax.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ struct ref_sycl_softmax_bwd_t : public gpu::generic::sycl::primitive_t {
&& dst_md()->data_type == diff_dst_md()->data_type
&& attr()->has_default_values()
&& set_default_formats() == status::success
&& check_formats(src_md(), dst_md())
&& check_formats(diff_src_md(), diff_dst_md())
&& md_dims_in_range(diff_dst_md());

if (!ok) return status::unimplemented;
Expand Down

0 comments on commit 6ae73e4

Please sign in to comment.