Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for NODE_NAME (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

      let arguments = (ins
        Arg<TF_Tensor>:$input,
    
        StrAttr:$log_dir_path,
        StrAttr:$file_name,
        BoolAttr:$enabled,
        StrAttr:$func_name,
        StrAttr:$node_name
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/templates/daemonset.yaml

                fieldRef:
                  fieldPath: metadata.name
            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. hack/local-up-cluster.sh

      local nodes_stats="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' get nodes"
      local node_name=$HOSTNAME_OVERRIDE
      local system_node_wait_time=60
      local interval_time=2
      kube::util::wait_for_success "$system_node_wait_time" "$interval_time" "$nodes_stats | grep $node_name"
      if [ $? == "1" ]; then
        echo "time out on waiting $node_name exist"
        exit 1
      fi
    
      local system_node_ready_time=300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

                - name: REPAIR_RUN_AS_DAEMON
                  value: "true"
                - name: REPAIR_SIDECAR_ANNOTATION
                  value: "sidecar.istio.io/status"
                - name: NODE_NAME
                  valueFrom:
                    fieldRef:
                      apiVersion: v1
                      fieldPath: spec.nodeName
                - name: GOMEMLIMIT
                  valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. manifests/charts/gateways/istio-ingress/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/mlir/quantization/tensorflow/python/quantize_model.py

          raise ValueError(
              'UnitWiseQuantizationSpec must contain at least one unit.'
          )
    
        for unit in unitwise_spec.unit:
          if not unit.op_type and not unit.node_name:
            raise ValueError('Either `op_type` or `node_name` must be specified.')
    
        _populate_quantization_component_spec(unitwise_spec.quantization_method)
    
        component_specs = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top