Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for resource_type (0.27 sec)

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

                                              ta.getDtype(), builder, &buffer))) {
        return failure();
      }
      auto var_type = RankedTensorType::get(
          {}, TF::ResourceType::get(
                  ArrayRef<TensorType>{buffer.getType().cast<TensorType>()},
                  ta.getContext()));
      auto local_var = builder.create<TF::MlirLocalVarOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

                                        .getElementType()
                                        .cast<TF::ResourceType>()
                                        .getSubtypes()))
          return false;
    
      return true;
    }
    
    Type GetResourceSubtype(Type type) {
      return type.cast<TensorType>()
          .getElementType()
          .cast<TF::ResourceType>()
          .getSubtypes()
          .front();
    }
    
    Type GetResourceSubtype(Value resource) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/TraversalUtil.java

            for (final Iterator<URL> it = ClassLoaderUtil.getResources(baseName); it.hasNext();) {
                final URL url = it.next();
                final Traverser resourcesType = getTraverser(url, rootPackage, baseName);
                if (resourcesType != null) {
                    list.add(resourcesType);
                }
            }
            if (list.isEmpty()) {
                logger.log("WCL0014", rootPackage);
                return EMPTY_ARRAY;
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      for (auto index_and_arg : llvm::enumerate(execute.getArgs())) {
        auto arg = SkipIdentity(index_and_arg.value(), /*allow_other_use=*/false);
        if (!arg.hasOneUse() ||
            !mlir::isa<TF::ResourceType>(getElementTypeOrSelf(arg.getType()))) {
          continue;
        }
        auto block_arg = mlir::dyn_cast<BlockArgument>(arg);
        if (!block_arg || block_arg.getOwner() != &replicate.GetBody()) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/emitter.go

    	gomaxprocs                   uint64
    	frameTree                    frameNode
    	frameSeq                     int
    	arrowSeq                     uint64
    	filter                       func(uint64) bool
    	resourceType                 string
    	resources                    map[uint64]string
    	focusResource                uint64
    	tasks                        map[uint64]task
    	asyncSliceSeq                uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.gen.go

    	return diag.NewMessage(
    		ImageAutoWithoutInjectionWarning,
    		r,
    		resourceType,
    		resourceName,
    	)
    }
    
    // NewImageAutoWithoutInjectionError returns a new diag.Message based on ImageAutoWithoutInjectionError.
    func NewImageAutoWithoutInjectionError(r *resource.Instance, resourceType string, resourceName string) diag.Message {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds.go

    	// Fetch the appropriate cluster's secret, based on the credential type
    	var secretController credscontroller.Controller
    	switch sr.ResourceType {
    	case credentials.KubernetesGatewaySecretType:
    		secretController = configClusterSecrets
    	default:
    		secretController = proxyClusterSecrets
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

          auto handle_type = mlir::cast<TensorType>(handle.getType());
          if (handle_type.getElementType().isInteger(/*width=*/32)) {
            Type resource_tensor_type =
                handle_type.clone(TF::ResourceType::get(rewriter.getContext()));
            handle.setType(resource_tensor_type);
          }
        }
    
        // Special type fixes for scalar tensor types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    	}
    	switch {
    	case len(args) > 2:
    		b.names = append(b.names, args[1:]...)
    		b.ResourceTypes(SplitResourceArgument(args[0])...)
    	case len(args) == 2:
    		b.names = append(b.names, args[1])
    		b.ResourceTypes(SplitResourceArgument(args[0])...)
    	case len(args) == 1:
    		b.ResourceTypes(SplitResourceArgument(args[0])...)
    		if b.labelSelector == nil && allowEmptySelector {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

                                                    const Type target,
                                                    const int axis) {
      const auto source_type = dyn_cast_or_null<ShapedType>(source.getValue());
      if (!source_type) return {};
      const auto src_ele_type = source_type.getElementType();
      auto qtype = dyn_cast<quant::QuantizedType>(src_ele_type);
    
      // Reset the quantization dimensions if it is per-axis.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top