| 46 | } |
| 47 | |
| 48 | void PReLU::SetLinkIndex(int index) { |
| 49 | clip_.SetName(absl::StrCat("prelu_clip", index)); |
| 50 | alpha_.SetName(absl::StrCat("prelu_alpha_", index)); |
| 51 | } |
| 52 | |
| 53 | std::string PReLU::GetCoreCode(const std::string& src, |
| 54 | const std::string& z_coord, |
no test coverage detected