| 34 | // to CuDNN. More patterns will be matched in cudnn_fused_conv_rewriter. |
| 35 | |
| 36 | class GpuConvRewriter : public HloModulePass { |
| 37 | public: |
| 38 | absl::string_view name() const override { return "gpu-conv-rewriter"; } |
| 39 | |
| 40 | StatusOr<bool> Run(HloModule* module) override; |
| 41 | }; |
| 42 | |
| 43 | } // namespace gpu |
| 44 | } // namespace xla |