Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 157 for op_names (0.11 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    		if tc.resource != nil {
    			metrics := &metricsapi.PodMetricsList{}
    			for i, resValue := range tc.resource.levels {
    				podName := fmt.Sprintf("%s-%d", podNamePrefix, i)
    				if len(tc.resource.podNames) > i {
    					podName = tc.resource.podNames[i]
    				}
    				// NB: the list reactor actually does label selector filtering for us,
    				// so we have to make sure our results match the label selector
    				podMetric := metricsapi.PodMetrics{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function.cc

        std::vector<const Node*>* body_nodes)
        TF_EXCLUSIVE_LOCKS_REQUIRED(fn_body->mu) {
      if (num_opers == -1) {
        for (const Node* node : fn_body->graph.op_nodes()) {
          const auto& iter = input_nodes.find(node);
          if (iter == input_nodes.end()) {
            // This node is not referenced in inputs. Add it to the body.
            body_nodes->push_back(node);
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Convolution ouside the while op is quantized.
        self.assertTrue(
            self._contains_op(
                output_graphdef,
                op_name='XlaConvV2',
                attr_name='RhsT',
                attr_val=attr_value_pb2.AttrValue(type=types_pb2.DT_INT8),
            )
        )
        # TODO: b/294783597 - [Converter][TF-Quantizer] Support quantization for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const std::unordered_map<string, Node*>& outside_compilation_attr_to_node) {
      std::vector<std::pair<Node*, Node*>>
          lifted_arg_nodes_and_outside_compilation_nodes;
      for (Node* n : function_body.graph->op_nodes()) {
        string oc_cluster;
        if (n->type_string() == "Placeholder" &&
            GetNodeAttr(n->def(), kXlaLiftedArgOutsideCompilationAttrName,
                        &oc_cluster)
                .ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_test.cc

      TFE_Context* context = TFE_OpGetContext(other, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      const char* op_name = TFE_OpGetName(other, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_Op* ret = TFE_NewOp(context, op_name, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      const char* device = TFE_OpGetDevice(other, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  6. tensorflow/c/ops.h

    // can be manually deleted by TF_DeleteOpDefinitionBuilder if it is never
    // registered.
    TF_CAPI_EXPORT extern TF_OpDefinitionBuilder* TF_NewOpDefinitionBuilder(
        const char* op_name);
    
    // Registers the given op builder with TensorFlow. Indicates success or
    // otherwise in the given status.
    //
    // `builder` is freed whether the op was successfully registered or not. You
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.gen.go

    func NewPodsIstioProxyImageMismatchInNamespace(r *resource.Instance, podNames []string) diag.Message {
    	return diag.NewMessage(
    		PodsIstioProxyImageMismatchInNamespace,
    		r,
    		podNames,
    	)
    }
    
    // NewConflictingTelemetryWorkloadSelectors returns a new diag.Message based on ConflictingTelemetryWorkloadSelectors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_cluster_util.cc

    }
    }  // namespace
    
    bool IsSingleGpuGraph(const Graph& g) {
      int gpus_seen = 0;
      absl::flat_hash_set<string> devices_seen;
    
      for (Node* n : g.op_nodes()) {
        if (devices_seen.contains(n->assigned_device_name())) {
          continue;
        }
    
        int gpu_number = GetGpuNumber(n->assigned_device_name());
        if (gpu_number != -1) {
          if (++gpus_seen > 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	SampleMeanDivisor func(s []int64) int64      // Function to compute the divisor for mean graphs, or nil
    	FormatTag         func(int64, string) string // Function to format a sample tag value into a string
    	ObjNames          bool                       // Always preserve obj filename
    	OrigFnNames       bool                       // Preserve original (eg mangled) function names
    
    	CallTree     bool // Build a tree instead of a graph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.cc

          [&] { TF_CHECK_OK(lib_runtime->ReleaseHandle(handle)); });
      const FunctionBody* fbody = lib_runtime->GetFunctionBody(handle);
      bool is_compilable = true;
      for (const Node* node : fbody->graph->op_nodes()) {
        stack_trace->emplace_back(
            StackFrameView{node->name(), function.name(), node->GetStackTrace()});
        is_compilable &= IsCompilableNode(*node, lib_runtime, stack_trace,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top