Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for resource_type (0.2 sec)

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

      for (BlockArgument& func_arg : func_args) {
        auto resource_type = mlir::dyn_cast<TF::ResourceType>(
            getElementTypeOrSelf(func_arg.getType()));
        if (!resource_type) continue;
        if (failed(ValidateResourceArgument(function, func_arg, resource_type)))
          return failure();
    
        add_resource_argument(func_arg, resource_type);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

        const auto resource_type = RankedTensorType::get(
            /*shape=*/{}, /*elementType=*/TF::ResourceType::get(
                /*subtypes=*/llvm::ArrayRef<TensorType>{const_op.getType()},
                builder.getContext()));
        auto var_handle_op =
            builder.create<TF::VarHandleOp>(const_op.getLoc(),
                                            /*resource=*/resource_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

          auto resource_type =
              mlir::TF::ResourceType::get({resource_subtype}, builder.getContext());
    
          auto tensor_type = mlir::cast<mlir::TensorType>(mlir_arg.getType());
          if (tensor_type.hasRank()) {
            mlir_arg.setType(
                GetTypeFromTFTensorShape(tensor_type.getShape(), resource_type));
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      node_def->set_op(FunctionLibraryDefinition::kArgOp);
    
      mlir::TensorType arg_type = mlir::cast<mlir::TensorType>(arg.getType());
      if (auto resource_type =
              mlir::dyn_cast<mlir::TF::ResourceType>(arg_type.getElementType())) {
        llvm::ArrayRef<mlir::TensorType> subtypes = resource_type.getSubtypes();
        if (!subtypes.empty()) {
          AttrValue handle_dtypes_attr;
          AttrValue handle_shapes_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      node_def->set_op(FunctionLibraryDefinition::kArgOp);
    
      mlir::TensorType arg_type = mlir::cast<mlir::TensorType>(arg.getType());
      if (auto resource_type =
              mlir::dyn_cast<mlir::TF::ResourceType>(arg_type.getElementType())) {
        llvm::ArrayRef<mlir::TensorType> subtypes = resource_type.getSubtypes();
        if (!subtypes.empty()) {
          AttrValue handle_dtypes_attr;
          AttrValue handle_shapes_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

    							}
    						}
    						dumps[resourceType] = append(dumps[resourceType], &discoveryv3.Resource{
    							Name:     w.Config.Name,
    							Resource: protoconv.MessageToAny(w),
    						})
    					default:
    						dumps[resourceType] = append(dumps[resourceType], rr)
    					}
    				default:
    					dumps[resourceType] = append(dumps[resourceType], rr)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    			"Components.{{.ComponentName}}.K8S.PriorityClassName":   {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.template.spec.priorityClassName."},
    			"Components.{{.ComponentName}}.K8S.ReadinessProbe":      {OutPath: "[{{.ResourceType}}:{{.ResourceName}}].spec.template.spec.containers.[name:{{.ContainerName}}].readinessProbe"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager.go

    	for resourceType := range totalMemoryType {
    		commonMemoryTypeSet[resourceType] = true
    	}
    
    	for resourceType := range nodeAllocatableReservation {
    		if !(corev1helper.IsHugePageResourceName(resourceType) || resourceType == v1.ResourceMemory) {
    			continue
    		}
    		commonMemoryTypeSet[resourceType] = true
    	}
    
    	for resourceType := range commonMemoryTypeSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    			continue
    		}
    
    		if currSingular.Resource != singular.Resource {
    			return resourceType, fmt.Errorf("multiple possible singular resources (%v) found for %v", resources, resourceType)
    		}
    	}
    
    	if singular.Empty() {
    		return resourceType, fmt.Errorf("no singular of resource %v has been defined", resourceType)
    	}
    
    	return singular.Resource, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

    };
    
    // Returns the type of the local variable for the stack size.
    Type GetSizeVarType(OpBuilder builder) {
      auto size_type = cutil::GetSizeType(builder);
      return RankedTensorType::get(
          {}, TF::ResourceType::get(ArrayRef<TensorType>{size_type},
                                    builder.getContext()));
    }
    
    // Returns the aliasing argument number of a fucntion return value if it simply
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top