blob: c6d00a6f33716e1f1846bb40534f885c395cc2d3 [file] [log] [blame]
# RUN: tf-mlir-translate -graphdef-to-mlir %s -tf-input-arrays=input -tf-input-data-types=DT_FLOAT -tf-input-shapes='' -tf-output-arrays=input -tf-convert-legacy-fed-inputs -o - | FileCheck %s
# Verify that invalid LegacyFedInput ops without any inputs are replaced with
# Placeholder ops.
# CHECK-NOT: LegacyFedInput
# CHECK: tf.Placeholder.input{{.*}}(tensor<f32>) -> tensor<f32>
# CHECK-NOT: LegacyFedInput
node {
name: "input"
op: "LegacyFedInput"
attr {
key: "input_def"
value {
s: "name: \"batch_1\"\n[dist_belief.ImageInputDef.ext] {\n num_rows: 128\n num_cols: 128\n mean_value: 128\n std_value: 128\n colorspace: RGB\n}\n"
}
}
attr {
key: "output_types"
value {
list {
type: DT_FLOAT
}
}
}
}
versions {
producer: 27
}