Home
last modified time | relevance | path

Searched refs:target_ops (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/lite/python/
Dtflite_convert.py170 if flags.target_ops:
172 converter.target_ops = set()
173 for option in flags.target_ops.split(","):
177 converter.target_ops.add(lite.OpsSet(option))
Dconvert.py248 target_ops=None, argument
340 if target_ops:
341 if set(target_ops) == set([OpsSet.TFLITE_BUILTINS, OpsSet.SELECT_TF_OPS]):
343 elif set(target_ops) == set([OpsSet.SELECT_TF_OPS]):
Dlite_flex_test.py42 converter.target_ops = set([lite.OpsSet.SELECT_TF_OPS])
Dlite.py443 self.target_ops = set([OpsSet.TFLITE_BUILTINS])
741 "target_ops": self.target_ops,
/external/tensorflow/tensorflow/lite/g3doc/guide/
Dops_select.md36 use the `target_ops` argument in the
38 following values are valid options for `target_ops`:
53 The following example shows how to use `target_ops` in the
60 converter.target_ops = [tf.lite.OpsSet.TFLITE_BUILTINS,
66 The following example shows how to use `target_ops` in the
76 --target_ops=TFLITE_BUILTINS,SELECT_TF_OPS
88 --target_ops=TFLITE_BUILTINS,SELECT_TF_OPS
/external/tensorflow/tensorflow/lite/testing/model_coverage/
Dmodel_coverage_lib_test.py106 target_ops=set([lite.OpsSet.SELECT_TF_OPS]))
170 target_ops=set([lite.OpsSet.TFLITE_BUILTINS,
Dmodel_coverage_lib.py85 converter.target_ops = kwargs["target_ops"]
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_session_test.cc219 std::vector<string> target_ops = {node_names[1]}; in TEST() local
221 ASSERT_TRUE(session->Run(inputs, names, target_ops, &outputs).ok()); in TEST()
/external/tensorflow/tensorflow/lite/g3doc/r2/convert/
Dpython_api.md191 The `target_ops` attribute has become an attribute of `TargetSpec` and renamed
/external/tensorflow/tensorflow/lite/
Dbuild_def.bzl487 "--target_ops=%s" % target_op_sets,