Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for NODE_NAME (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

          }
    
          op.setAttr(tensorflow::kXlaTokenInputNodesAttrName,
                     ArrayAttr::get(ctx, {token}));
    
          auto node_name = StringAttr::get(ctx, name_mapper.GetUniqueName(&op));
          op.setAttr(tensorflow::kXlaOriginalOutsideCompilationNodeName, node_name);
          token = node_name;
        }
      }
      return success();
    }
    
    void PrepareTpuComputationForTfExportPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

                quantization_unit.value().op_type() != unit.op_type()) {
              continue;
            }
    
            if (!unit.node_name().empty()) {
              const RE2 node_name_regex(unit.node_name());
              if (!RE2::FullMatch(quantization_unit.value().node_name(),
                                  node_name_regex)) {
                continue;
              }
            }
    
            if (!unit.func_name().empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.cc

        return "";
      }
    
      auto node_name = [&graph](int node_id) {
        if (!FastBoundsCheck(node_id, graph.num_node_ids())) {
          return string("(null)");
        }
        auto* node = graph.FindNodeId(node_id);
        if (node == nullptr) {
          return string("(null)");
        }
        return node->name();
      };
    
      string description;
      absl::StrAppend(&description, "Edge from ", node_name(src), " to ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

            - name: JWT_POLICY
              value: third-party-jwt
            - name: PILOT_CERT_PROVIDER
              value: istiod
            - name: CA_ADDR
              value: istiod.istio-system.svc:15012
            - name: NODE_NAME
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.nodeName
            - name: POD_NAME
              valueFrom:
                fieldRef:
                  apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        return result;
      }();
      return global_op_prefixes;
    }
    
    // Converts a location to the debug information for the node def.
    Status ConvertLocation(mlir::Location inst_loc, llvm::StringRef node_name,
                           NodeDef::ExperimentalDebugInfo* debug_info) {
      mlir::Location unwrapped_inst_loc = GetLocationWithoutOpType(inst_loc);
    
      if (auto call_site = mlir::dyn_cast<mlir::CallSiteLoc>(unwrapped_inst_loc)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

              *op_reg_data = tensorflow::OpRegistrationData(opdef);
              return absl::OkStatus();
            });
    
        // Register the corresponding fake op kernel.
        const char* node_name = opdef.name().c_str();
        const char* op_name = opdef.name().c_str();
        const char* device_name = "CPU";
        static auto fake_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      *flib_def.add_function() = std::move(func);
      return flib_def;
    }
    
    Node* MakeCall(Graph* graph, const string& callee_name, const string& node_name,
                   Status* status) {
      NodeDef call_node;
      call_node.set_name(node_name);
      call_node.set_op(callee_name);
      return graph->AddNode(call_node, status);
    }
    
    TEST(ResourceOperationSafetyAnalysisTest, CallRead) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/partially_decluster_pass_test.cc

        if (node->name() == name) {
          return node;
        }
      }
      return nullptr;
    }
    
    bool GetInputsForNode(const Graph& graph, const string& node_name,
                          std::vector<Node*>* inputs) {
      const Node* node = FindNodeByName(graph, node_name);
      if (node == nullptr) {
        return false;
      }
      for (const Edge* e : node->in_edges()) {
        inputs->push_back(e->src());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              {{- else }}
                value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen.cc

    )";
        const tf2xla::Variable& var = config.variable(i - config.feed_size());
        rewrites.emplace_back("{{MAYBE_CONST}}", var.readonly() ? "const " : "");
        *methods += RewriteWithName(
            var.name().empty() ? var.node_name() : var.name(), code, rewrites);
      }
      return absl::OkStatus();
    }
    
    // Generate shape infos for args (inputs).
    Status GenArgShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top