Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 776 for inputs_ (0.22 sec)

  1. cmd/endpoint-ellipses_test.go

    	testCases := []struct {
    		args       []string
    		totalSizes []uint64
    		indexes    [][]uint64
    		success    bool
    	}{
    		// Invalid inputs.
    		{
    			[]string{"data{1...17}/export{1...52}"},
    			[]uint64{14144},
    			nil,
    			false,
    		},
    		// Valid inputs.
    		{
    			[]string{"data{1...3}"},
    			[]uint64{3},
    			[][]uint64{{3}},
    			true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      } else if (sparse_index_vector.type ==
                 tflite::SparseIndexVector_Uint16Vector) {
        const auto& inputs = sparse_index_vector.AsUint16Vector()->values;
        std::vector<int32_t> outputs(inputs.size());
        std::transform(inputs.begin(), inputs.end(), outputs.begin(),
                       [](auto x) { return static_cast<int32_t>(x); });
        return outputs;
      } else if (sparse_index_vector.type ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

        private List<BindingPredicate> mapInputs(List<? extends ModelReference<?>> inputs) {
            if (inputs.isEmpty()) {
                return ImmutableList.of();
            }
            ImmutableList.Builder<BindingPredicate> result = ImmutableList.builderWithExpectedSize(inputs.size());
            for (ModelReference<?> input : inputs) {
                if (input.getPath() == null && input.getScope() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

             ++subgraph_idx) {
          const auto subgraph = model->subgraphs()->Get(subgraph_idx);
          for (size_t i = 0; i < subgraph->inputs()->size(); ++i) {
            if (subgraph->inputs()->Get(i) == tensor_idx) {
              return true;
            }
          }
          for (size_t i = 0; i < subgraph->outputs()->size(); ++i) {
            if (subgraph->outputs()->Get(i) == tensor_idx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/xla_validate_inputs.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-xla-validate-inputs
    
    // expected-error @+1 {{expects no nested calls of entry functions as they prevent graph traversal in some passes from working correctly}}
    func.func @nested_entry_functions() attributes {tf.entry_function = {}} {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 818 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-allow-tf.mlir

      func.func @serving_default(%arg0: tensor<1x20x20x28xf32> {tf_saved_model.index_path = ["a"]}) -> (tensor<1x40x40x28xf32> {tf_saved_model.index_path = ["b"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "c:0", outputs = "d:0"}, tf_saved_model.exported_names = ["serving_default"]} {
          %c = stablehlo.constant dense<40> : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 914 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

          // Collect all the quantized inputs and "clone" the matched op by these
          // inputs.
          SmallVector<Value, 4> inputs;
          inputs.reserve(op_with_region->getNumOperands());
          for (Value operand : op_with_region->getOperands()) {
            const Type operand_type = operand.getType();
            if (mlir::isa<NoneType>(operand_type)) {
              inputs.push_back(operand);
              continue;
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    var _ cel.ExpressionAccessor = &ValidationCondition{}
    
    // ValidationCondition contains the inputs needed to compile, evaluate and validate a cel expression
    type ValidationCondition struct {
    	Expression string
    	Message    string
    	Reason     *metav1.StatusReason
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/post-quantize-dynamic-range.mlir

    // CHECK-LABEL: PruneUnusedCustomOp
    func.func @PruneUnusedCustomOp(%arg0: tensor<1x1x1x1xf32>) -> tensor<*xf32> attributes {tf.entry_function = {inputs = "input", outputs = "custom_op"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// After call expansion, Calls have the same fixed-middle-memory arrangement of inputs,
    	// with the difference that the "middle" is only the register-resident inputs,
    	// and the non-register inputs are instead stored at ABI-defined offsets from SP
    	// (and the stores thread through the memory that is ultimately an input to the call).
    	// Outputs follow a similar pattern; register-resident outputs are the leading elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top