Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/operator/nn/dnnl/dnnl_base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ dnnl::memory::desc GetDesc(const dnnl::memory::desc& desc, const dnnl_format_tag
dims[i] = desc.data.dims[i];
dnnl::memory::format_tag cpp_format = static_cast<dnnl::memory::format_tag>(format);
dnnl::memory::data_type cpp_type = static_cast<dnnl::memory::data_type>(desc.data.data_type);
dnnl::memory::desc data_md(dims, cpp_type, cpp_format);
return dnnl::memory::desc(dims, cpp_type, cpp_format);
}

Expand Down