HomeSort by relevance Sort by last modified time
    Searched refs:node_name (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/dynamic_depth/internal/dynamic_depth/
const.cc 80 const std::string DynamicDepthConst::Namespace(const std::string& node_name) {
81 if (node_name == kPose) {
89 if (node_name == kImagingModel || node_name == kImage ||
90 node_name == kDepthMap || node_name == kPointCloud ||
91 node_name == kLightEstimate) {
95 if (node_name == kItem) {
99 if (node_name == kCamera || node_name == kEarthPose |
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_node_key.cc 26 DebugNodeKey::DebugNodeKey(const string& device_name, const string& node_name,
29 node_name(node_name),
33 strings::StrCat(node_name, ":", output_slot, ":", debug_op)),
37 return (device_name == other.device_name && node_name == other.node_name &&
debug_node_key.h 30 DebugNodeKey(const string& device_name, const string& node_name,
42 const string node_name; member in struct:tensorflow::DebugNodeKey
  /external/autotest/client/common_lib/cros/cfm/
cras_input_node.py 7 def __init__(self, node_id, node_name, gain, node_type, device_id,
10 self.node_name = node_name
18 'Gain: %d' % (self.node_id, self.node_name, self.device_id,
cras_output_node.py 7 def __init__(self, node_id, node_type, node_name, volume, device_id,
11 self.node_name = node_name
18 'Volume: %d' % (self.node_id, self.node_name, self.device_id,
  /external/u-boot/arch/arm/mach-socfpga/
pinmux_arria10.c 11 static int do_pinctr_pin(const void *blob, int child, const char *node_name)
40 const char *node_name; local
47 node_name = fdt_get_name(blob, child, &len);
49 while (node_name) {
50 if (!strcmp(child_name, node_name))
51 return do_pinctr_pin(blob, child, node_name);
58 node_name = fdt_get_name(blob, child, &len);
  /external/tensorflow/tensorflow/python/debug/cli/
evaluator_test.py 31 device_name, node_name, output_slot, debug_op, exec_index = (
34 self.assertEqual("foo", node_name)
39 device_name, node_name, output_slot, debug_op, exec_index = (
42 self.assertEqual("hidden_0/Weights", node_name)
48 device_name, node_name, output_slot, debug_op, exec_index = (
51 self.assertEqual("foo", node_name)
56 device_name, node_name, output_slot, debug_op, exec_index = (
60 self.assertEqual("hidden_0/Weights", node_name)
66 device_name, node_name, output_slot, debug_op, exec_index = (
70 self.assertEqual("foo", node_name)
    [all...]
analyzer_cli.py 64 node_name=None,
74 node_name: (str or None) name of the node involved (if any). If None,
92 if node_name:
96 "node_info -a -d -t %s" % node_name,
101 "print_tensor %s" % node_name,
106 "list_inputs -c -r %s" % node_name,
111 "list_outputs -c -r %s" % node_name,
232 "node_name",
261 "node_name",
292 "node_name",
    [all...]
  /external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/include/
node_data_float.h 34 char node_name[NODE_DATA_FLOAT_NODE_NAME_BUF_SIZE]; member in struct:NodeDataFloat
  /external/ltp/testcases/kernel/syscalls/mknod/
mknod02.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
125 TEST(mknod(node_name, MODE_SGID, 0));
131 node_name, MODE_SGID, TEST_ERRNO,
139 if (stat(node_name, &buf) < 0) {
141 node_name, TEST_ERRNO);
150 "bit not set", node_name);
158 node_name);
165 node_name, MODE_SGID);
169 if (unlink(node_name) == -1) {
171 node_name, errno, strerror(errno))
    [all...]
mknod04.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
126 TEST(mknod(node_name, MODE_RWX, 0));
131 "%s", node_name, MODE_RWX, TEST_ERRNO,
139 if (stat(node_name, &buf) < 0) {
141 node_name, TEST_ERRNO);
149 "bit set", node_name);
157 node_name);
164 node_name, MODE_RWX);
168 if (unlink(node_name) == -1) {
170 node_name, errno, strerror(errno))
    [all...]
mknod05.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
125 TEST(mknod(node_name, MODE_SGID, 0));
130 "%s", node_name, MODE_SGID, TEST_ERRNO,
138 if (stat(node_name, &buf) < 0) {
140 node_name, TEST_ERRNO);
148 "setgid bit not set", node_name);
156 node_name);
163 node_name, MODE_SGID);
167 if (unlink(node_name) == -1) {
169 node_name, errno, strerror(errno))
    [all...]
mknod08.c 95 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
121 TEST(mknod(node_name, MODE_RWX, 0));
127 node_name, MODE_RWX, TEST_ERRNO,
135 if (stat(node_name, &buf) < 0) {
138 node_name, TEST_ERRNO);
146 "bit set", node_name);
154 node_name);
161 node_name, MODE_RWX);
165 if (unlink(node_name) == -1) {
168 node_name, errno, strerror(errno))
    [all...]
mknod03.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
125 TEST(mknod(node_name, MODE_SGID, 0));
130 "%s", node_name, MODE_SGID, TEST_ERRNO,
138 if (stat(node_name, &buf) < 0) {
140 node_name, TEST_ERRNO);
154 node_name);
161 node_name, MODE_SGID);
165 if (unlink(node_name) == -1) {
167 node_name, errno, strerror(errno));
217 sprintf(node_name, TNODE, mypid)
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
graph_optimizer_stage.cc 22 const NodeScopeAndName ParseNodeScopeAndName(const string& node_name) {
23 auto pos = node_name.find_last_of("/");
25 return {"", node_name};
27 return {node_name.substr(0, pos), node_name.substr(pos + 1)};
33 string node_name = NodeName(input); local
34 NodeDef* node_by_name = ctx.node_map->GetNode(node_name);
36 return errors::FailedPrecondition("Node ", node_name,
119 for (const string& node_name : node_names) {
120 auto name_and_scope = ParseNodeScopeAndName(node_name);
    [all...]
  /external/tensorflow/tensorflow/core/grappler/
mutable_graph_view.h 79 // Updates node `node_name` op, device, and attributes. This will clear any
83 Status UpdateNode(absl::string_view node_name, absl::string_view op,
136 // Adds regular fanin `fanin` to node `node_name`. If the node or fanin do not
141 Status AddRegularFanin(absl::string_view node_name, const TensorId& fanin);
143 // Adds regular fanin `fanin` to node `node_name` at port `port`. If the node
151 Status AddRegularFaninByPort(absl::string_view node_name, int port,
154 // Adds control dependency `fanin` to the target node named `node_name`. To
175 Status AddControllingFanin(absl::string_view node_name,
178 // Removes regular fanin `fanin` from node `node_name`. If the node or fanin
185 Status RemoveRegularFanin(absl::string_view node_name, const TensorId& fanin)
    [all...]
utils.h 50 const std::set<NodeDef*>& GetOutputs(const string& node_name) const;
55 void UpdateInput(const string& node_name, const string& old_input_name,
57 void AddOutput(const string& node_name, const string& output_name);
58 void RemoveInputs(const string& node_name);
59 void RemoveOutput(const string& node_name, const string& output_name);
60 void RemoveOutputs(const string& node_name);
61 void UpdateOutput(const string& node_name, const string& old_output_name,
118 // NodeName(input_name) is equal to node_name. Returns -1 for control inputs.
119 // Returns -2 if NodeName(input_name) is not equal to node_name.
124 const string& node_name) {
    [all...]
  /external/tensorflow/tensorflow/core/grappler/utils/
colocation.cc 29 // The map is mapping from one node name to its parent. node_name is the
31 // parent, we can find the root node for the colocation group that node_name
34 const string& node_name) {
35 if (map->find(node_name) == map->end()) {
36 // If node_name is not in the map, we create a new root node which points
38 map->insert({node_name, node_name});
39 return node_name;
41 string cur = node_name;
  /external/tensorflow/tensorflow/core/kernels/
i_remote_fused_graph_executor.h 58 virtual bool FillInputNode(const string& node_name, const Tensor& tensor) = 0;
61 virtual bool ReadOutputNode(const string& node_name,
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_control_wrapper.h 48 bool FillInputNode(const string& node_name, const Tensor& tensor) final;
49 bool ReadOutputNode(const string& node_name,
56 bool ReadOutputNode(const string& node_name, std::vector<ByteArray>* outputs);
63 const string& node_name,
  /external/libchrome/base/test/metrics/
histogram_enum_reader.cc 30 const std::string node_name = reader->NodeName(); local
31 if (node_name == "enum" && reader->IsClosingElement())
34 if (node_name == "int") {
111 const std::string node_name = enums_xml_reader.NodeName(); local
112 if (node_name == "enum") {
  /external/tensorflow/tensorflow/python/debug/lib/
debug_data.py 171 def _get_tensor_name(node_name, output_slot):
175 node_name: Name of the node that outputs the tensor, as a string.
182 return "%s:%d" % (node_name, output_slot)
185 def _get_tensor_watch_key(node_name, output_slot, debug_op):
189 node_name: Name of the node by which the watched tensor is produced, as a
199 return "%s:%s" % (_get_tensor_name(node_name, output_slot), debug_op)
277 `node_name`, `output_slot`, `debug_op`, and path to the dump file
304 `node_name`_`output_slot`_`debug_op`_`timestamp`
335 self.node_name,
398 def node_name(self) member in class:DebugTensorDatum
    [all...]
debug_utils.py 27 node_name,
45 node_name: (`str`) name of the node to watch.
67 watch.node_name = node_name
117 node_name_regex_whitelist: Regular-expression whitelist for node_name,
154 node_name = op.name
157 if node_name_pattern and not node_name_pattern.match(node_name):
169 node_name,
209 node_name_regex_blacklist: Regular-expression blacklist for node_name.
247 node_name = op.nam
    [all...]
  /external/skia/modules/skottie/src/
SkottieTest.cpp 76 SkString node_name; member in struct:final::ColorInfo
81 SkString node_name; member in struct:final::OpacityInfo
86 SkString node_name; member in struct:final::TransformInfo
90 void onColorProperty(const char node_name[],
92 fColors.push_back({SkString(node_name), lh()->get()});
95 void onOpacityProperty(const char node_name[],
97 fOpacities.push_back({SkString(node_name), lh()->get()});
100 void onTransformProperty(const char node_name[],
102 fTransforms.push_back({SkString(node_name), lh()->get()});
126 REPORTER_ASSERT(reporter, colors[0].node_name.equals("fill_0"))
    [all...]
  /external/skqp/modules/skottie/src/
SkottieTest.cpp 76 SkString node_name; member in struct:final::ColorInfo
81 SkString node_name; member in struct:final::OpacityInfo
86 SkString node_name; member in struct:final::TransformInfo
90 void onColorProperty(const char node_name[],
92 fColors.push_back({SkString(node_name), lh()->get()});
95 void onOpacityProperty(const char node_name[],
97 fOpacities.push_back({SkString(node_name), lh()->get()});
100 void onTransformProperty(const char node_name[],
102 fTransforms.push_back({SkString(node_name), lh()->get()});
126 REPORTER_ASSERT(reporter, colors[0].node_name.equals("fill_0"))
    [all...]

Completed in 1538 milliseconds

1 2 3 4 5 6 7 8 91011