Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for identity1 (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          mlir::Value operand;
          if (exceptions.count(arg)) {
            // For exceptions, since we are going to synthesize a binary op that
            // produce the identity value, it is also required that it is a ranked
            // tensor with rank = `axis + 1` and axis dim has size `1`.
            operand = arg;
          } else {
            operand = arg.getDefiningOp()->getOperand(operand_idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	// pods from previous runs, are not known to the pod worker.
    
    	allPodsByUID := make(map[types.UID]*v1.Pod)
    	for _, pod := range allPods {
    		allPodsByUID[pod.UID] = pod
    	}
    
    	// Identify the set of pods that have workers, which should be all pods
    	// from config that are not terminated, as well as any terminating pods
    	// that have already been removed from config. Pods that are terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        namespaces: ["kube-system"]
        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["configmaps"]
      - level: None
        users: ["kubelet"] # legacy kubelet identity
        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["nodes", "nodes/status"]
      - level: None
        userGroups: ["system:nodes"]
        verbs: ["get"]
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      return input_shaped_type == output_shaped_type;
    }
    
    }  // end anonymous namespace
    
    OpFoldResult ReshapeOp::fold(FoldAdaptor adaptor) {
      auto operands = adaptor.getOperands();
      // Remove identity reshape with both static result and input shape.
      auto result_type = getType().cast<ShapedType>();
      auto input_type = getOperand(0).getType().cast<ShapedType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"string(type(self.nestedInList[0])).endsWith('.nestedInList.@idx')": "found no matching overload for 'string' applied to '(type",
    			},
    		},
    		{name: "listMaps with unsupported identity characters in property names",
    			obj: map[string]interface{}{
    				"objs": []interface{}{
    					[]interface{}{
    						map[string]interface{}{"k!": "a", "k.": "1"},
    						map[string]interface{}{"k!": "b", "k.": "2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	// Dependency information
    	Imports   []string          `json:",omitempty"` // import paths used by this package
    	ImportMap map[string]string `json:",omitempty"` // map from source import to ImportPath (identity entries omitted)
    	Deps      []string          `json:",omitempty"` // all (recursively) imported dependencies
    
    	// Error information
    	// Incomplete is above, packed into the other bools
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // control dependencies are not to be executed. For single output nodes,
      // Placeholders can be converted to a NoOp if there are no uses, and
      // PlaceholderWithDefault can be converted to an Identity.
      for (const auto* edge : control_edges) {
        graph_->AddControlEdge(placeholder_node, edge->dst());
        graph_->RemoveControlEdge(edge);
      }
    
      if (update_inplace) {
        graph_->RemoveNode(node);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Custom op";
    
      let description = [{
        A generic op for any TFLite custom operation.
    
        input: A list of inputs in the original op.
        custom_code: A string used to identify which exactly this op is, which
                     corresponds to operator_codes.custom_code in the flatbuffer.
        custom_option: a holder to save the op attributes in bytes fashion.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top