Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 140 for Enumerated (0.42 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

        std::vector<tensorflow::Tensor>& tensors,
        std::vector<tensorflow::TensorValue>& inputs) {
      // Prepare the list of Tensor inputs for the kernel.
      for (auto it : llvm::enumerate(op_->getOperands())) {
        Value operand = it.value();
        size_t idx = it.index();
    
        tensorflow::XlaExpression expr = GetExprForOperand(operand, op_, idx);
        tensorflow::XlaExpression::Kind kind = expr.kind();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // the function.
    llvm::SmallSet<int, 4> GetTensorListArgumentsIndex(func::FuncOp func) {
      llvm::SmallSet<int, 4> set;
      for (const auto &arg_and_idx : llvm::enumerate(func.getArguments())) {
        if (IsTensorListType(arg_and_idx.value().getType(), arg_and_idx.value())) {
          set.insert(arg_and_idx.index());
        }
      }
      return set;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	}
    
    	if err := s.installAPIResources(apiPrefix, apiGroupInfo, openAPIModels); err != nil {
    		return err
    	}
    
    	// Install the version handler.
    	// Add a handler at /<apiPrefix> to enumerate the supported api versions.
    	legacyRootAPIHandler := discovery.NewLegacyRootAPIHandler(s.discoveryAddresses, s.Serializer, apiPrefix)
    	if utilfeature.DefaultFeatureGate.Enabled(features.AggregatedDiscoveryEndpoint) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (input_names.size() != fn.getNumArguments()) {
          fn.emitWarning() << "invalid entry function specification";
          return;
        }
        for (const auto& it : llvm::enumerate(fn.getArguments())) {
          name_mapper_.InitOpName(it.value(), input_names[it.index()].trim());
        }
        *has_input_attr = true;
      }
    
      if (auto str =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	// If Trace is set, a debug trace is printed to stdout.
    	Trace bool
    
    	// If Error != nil, it is called with each error found
    	// during type checking; err has dynamic type Error.
    	// Secondary errors (for instance, to enumerate all types
    	// involved in an invalid recursive type declaration) have
    	// error strings that start with a '\t' character.
    	// If Error == nil, type-checking stops with the first
    	// error found.
    	Error func(err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/go/types/api.go

    	_Trace bool
    
    	// If Error != nil, it is called with each error found
    	// during type checking; err has dynamic type Error.
    	// Secondary errors (for instance, to enumerate all types
    	// involved in an invalid recursive type declaration) have
    	// error strings that start with a '\t' character.
    	// If Error == nil, type-checking stops with the first
    	// error found.
    	Error func(err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        const int64_t loc = result_dim_sizes_loc[dim];
        if (loc == ShapedType::kDynamic) return std::string("output");
        return llvm::formatv("operand #{0}", loc).str();
      };
    
      for (const auto& operand : llvm::enumerate(operand_types)) {
        auto operand_type = operand.value().dyn_cast<RankedTensorType>();
        if (!operand_type) {
          result_dim_sizes[axis] = ShapedType::kDynamic;
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              contracting_dims.add(c)
          x_signature = [
              None if c not in contracting_dims else x_shape[cidx]
              for cidx, c in enumerate(x_labels)
          ]
          y_signature = [
              None if c not in contracting_dims else y_shape[cidx]
              for cidx, c in enumerate(y_labels)
          ]
        return x_shape, y_shape, bias_shape, x_signature, y_signature
    
      def _create_einsum_model(
          self,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BitString.BitLength", Field, 0},
    		{"BitString.Bytes", Field, 0},
    		{"ClassApplication", Const, 6},
    		{"ClassContextSpecific", Const, 6},
    		{"ClassPrivate", Const, 6},
    		{"ClassUniversal", Const, 6},
    		{"Enumerated", Type, 0},
    		{"Flag", Type, 0},
    		{"Marshal", Func, 0},
    		{"MarshalWithParams", Func, 10},
    		{"NullBytes", Var, 9},
    		{"NullRawValue", Var, 9},
    		{"ObjectIdentifier", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top