We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd69663 commit 097acb5Copy full SHA for 097acb5
src/cpu/x64/ip_convolution.hpp
@@ -209,7 +209,12 @@ struct ip_convolution_fwd_t : public primitive_t {
209
private:
210
std::string name_ = "ip:";
211
212
- void init_name() { name_.append(ip_pd_->name()); }
+ void init_name() {
213
+ const std::string ips(ip_pd_->name());
214
+ const std::string prefix = "x64:";
215
+ const size_t pos = ips.find(prefix);
216
+ name_.append(ips, pos + prefix.length(), std::string::npos);
217
+ }
218
219
void init_scratchpad() {
220
using namespace memory_tracking::names;
0 commit comments