| 111 | }; |
| 112 | |
| 113 | MapDatasetParams MapDatasetParams1() { |
| 114 | return {{/*start=*/0, /*stop=*/10, /*step=*/3}, |
| 115 | /*other_arguments=*/{}, |
| 116 | /*func=*/ |
| 117 | FunctionDefHelper::FunctionRef("XTimesTwo", {{"T", DT_INT64}}), |
| 118 | /*func_lib=*/{test::function::XTimesTwo()}, |
| 119 | /*type_arguments=*/{}, |
| 120 | /*output_dtypes=*/{DT_INT64}, |
| 121 | /*output_shapes=*/{PartialTensorShape({})}, |
| 122 | /*use_inter_op_parallelism=*/true, |
| 123 | /*preserve_cardinality=*/true, |
| 124 | /*node_name=*/kNodeName}; |
| 125 | } |
| 126 | |
| 127 | MapDatasetParams MapDatasetParams2() { |
| 128 | return {{/*start=*/10, /*stop=*/0, /*step=*/-3}, |
no test coverage detected