Enqueues a "retrieve parameter value" instruction for a parameter that was passed to the computation.
| 2921 | // Enqueues a "retrieve parameter value" instruction for a parameter that was |
| 2922 | // passed to the computation. |
| 2923 | XlaOp Parameter(XlaBuilder* builder, int64 parameter_number, const Shape& shape, |
| 2924 | const string& name) { |
| 2925 | std::vector<bool> empty_bools; |
| 2926 | return Parameter(builder, parameter_number, shape, name, empty_bools); |
| 2927 | } |
| 2928 | |
| 2929 | XlaOp Parameter(XlaBuilder* builder, int64 parameter_number, const Shape& shape, |
| 2930 | const string& name, |