| 27 | class ScatterTest : public HloTestBase { |
| 28 | protected: |
| 29 | void RunTest(const string& hlo_text, Literal* operand, |
| 30 | Literal* scatter_indices, Literal* updates) { |
| 31 | RunTest(hlo_text, {operand, scatter_indices, updates}); |
| 32 | } |
| 33 | |
| 34 | void RunTest(const string& hlo_text, absl::Span<Literal* const> args) { |
| 35 | HloModuleConfig config; |
nothing calls this directly
no test coverage detected