Home
last modified time | relevance | path

Searched refs:supported_ops (Results 1 – 19 of 19) sorted by relevance

/external/tensorflow/tensorflow/lite/toco/python/
Dtoco_python_api.cc200 std::vector<std::string> supported_ops = toco::GetPotentiallySupportedOps(); in TocoGetPotentiallySupportedOps() local
201 PyObject* list = PyList_New(supported_ops.size()); in TocoGetPotentiallySupportedOps()
202 for (size_t i = 0; i < supported_ops.size(); ++i) { in TocoGetPotentiallySupportedOps()
203 const string& op = supported_ops[i]; in TocoGetPotentiallySupportedOps()
/external/tensorflow/tensorflow/lite/python/
Dlite.py158 def __init__(self, supported_ops=None, supported_types=None): argument
159 if supported_ops is None:
160 supported_ops = set([OpsSet.TFLITE_BUILTINS])
161 self.supported_ops = supported_ops
195 set([OpsSet.SELECT_TF_OPS]) == set(self.target_spec.supported_ops))
224 self.target_spec.supported_ops) or
288 "target_ops": self.target_spec.supported_ops,
928 self.target_spec.supported_ops = value
941 return self.target_spec.supported_ops
Dlite_flex_test.py52 converter.target_spec.supported_ops = set([lite.OpsSet.SELECT_TF_OPS])
80 self.assertEqual(converter.target_spec.supported_ops,
113 converter.target_spec.supported_ops = set([lite.OpsSet.SELECT_TF_OPS])
Dtflite_convert.py181 converter.target_spec.supported_ops = set()
186 converter.target_spec.supported_ops.add(lite.OpsSet(option))
Dlite_v2_test.py267 quantized_converter.target_spec.supported_ops = [
293 quantized_converter.target_spec.supported_ops = [
Dlite_test.py828 quantized_converter.target_spec.supported_ops = [
937 quantized_converter.target_spec.supported_ops = [
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.lite.-target-spec.pbtxt7 …argspec: "args=[\'self\', \'supported_ops\', \'supported_types\'], varargs=None, keywords=None, de…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.lite.-target-spec.pbtxt7 …argspec: "args=[\'self\', \'supported_ops\', \'supported_types\'], varargs=None, keywords=None, de…
/external/kernel-headers/original/uapi/linux/
Dkeyctl.h98 __u32 supported_ops; /* Which ops are supported */ member
/external/tensorflow/tensorflow/lite/g3doc/guide/
Dops_select.md36 use the `target_spec.supported_ops` argument in the
38 for `target_spec.supported_ops`:
45 Note: `target_spec.supported_ops` was previously `target_ops` in the Python API.
62 converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS,
/external/u-boot/lib/crypto/
Dpublic_key.c176 info->supported_ops = (KEYCTL_SUPPORTS_ENCRYPT | in software_key_query()
179 info->supported_ops |= (KEYCTL_SUPPORTS_DECRYPT | in software_key_query()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dquantize.cc47 static const std::set<OperatorType> supported_ops{ in SupportsQuantization() local
111 return supported_ops.find(type) != supported_ops.end(); in SupportsQuantization()
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_dispatch_test.py782 supported_ops = [
825 for element in supported_ops + supported_ops_v1:
831 for element in supported_ops + supported_ops_v2:
/external/tensorflow/tensorflow/lite/testing/
Dtoco_convert.py139 converter.target_spec.supported_ops = [
/external/tensorflow/tensorflow/lite/g3doc/performance/
Dpost_training_quantization.md105 converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]
113 Note: `target_spec.supported_ops` was previously `target_ops` in the Python API.
Dpost_training_integer_quant.ipynb383 "converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]\n",
/external/tensorflow/tensorflow/lite/g3doc/convert/
D1x_compatibility.md68 to `supported_ops` in line with future additions to the optimization framework.
/external/tensorflow/tensorflow/lite/testing/model_coverage/
Dmodel_coverage_lib.py95 converter.target_spec.supported_ops = kwargs["target_ops"]
/external/tensorflow/tensorflow/lite/toco/
Dimport_tensorflow.cc2741 std::vector<std::string> supported_ops; in GetPotentiallySupportedOps() local
2746 supported_ops.push_back(item.first); in GetPotentiallySupportedOps()
2748 return supported_ops; in GetPotentiallySupportedOps()