Create a constant of the provided d_type;
| 614 | |
| 615 | // Create a constant of the provided d_type; |
| 616 | Output ConstHelper(const Scope& scope, int value, DataType d_type) { |
| 617 | return Cast(scope, Const(scope, value), d_type); |
| 618 | } |
| 619 | |
| 620 | // Adds the batch offsets to the given indices and returns the results. |
| 621 | Output GetBatchIndices(const Scope& scope, const Output& params_shape, |
no test coverage detected