Home
last modified time | relevance | path

Searched refs:oplist (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dcluster_ops_by_policy_pass.cc61 bool IsOplistMatch(Operation *op, ArrayRef<std::string> oplist, in IsOplistMatch() argument
70 StringRef op_name = *oplist.begin(); in IsOplistMatch()
77 auto oplist_iter = oplist.begin() + 1; in IsOplistMatch()
78 auto oplist_end = oplist.end(); in IsOplistMatch()
155 if (oplist.empty()) return; in runOnFunction()
168 if (!IsOplistMatch(op, oplist, is_matched, matched_ops)) return; in runOnFunction()
Dtf_passes.td721 The only currently supported option is 'oplist=<list of ops>'. This option
728 For example, running this pass with option oplist="tf.Cast, tf.Add" on:
757 ListOption<"oplist", "oplist", "std::string",
/external/tensorflow/tensorflow/go/genop/internal/
Dapi_def_map.go54 func newAPIDefMap(oplist *odpb.OpList) (*apiDefMap, error) {
56 opdefSerialized, err := proto.Marshal(oplist)
58 return nil, fmt.Errorf("could not serialize OpDef for %s", oplist.String())
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dcluster_ops_by_policy.mlir1 // RUN: tf-opt -split-input-file -cluster-ops-by-policy=oplist="tf.Neg,tf.Add,tf.Neg" %s | FileChec…
/external/python/cpython2/Lib/test/
Dtest_decimal.py661 oplist = [
672 oplist.append(('/', '__div__', '__rdiv__'))
675 oplist.append(('/', '__truediv__', '__rtruediv__'))
677 for sym, lop, rop in oplist:
/external/python/cpython3/Lib/test/
Dtest_decimal.py894 oplist = [
904 for sym, lop, rop in oplist: