Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,749 for input0 (0.12 sec)

  1. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/inputs/PotentialInputs.java

        }
    
        public Object get(String path) {
            PotentialInput potentialInput = inputs.get(path);
            if (potentialInput == null) {
                throw new IllegalStateException("no input for " + path);
            }
            return potentialInput.get(modelViews);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple_with_connected_control_nodes.mlir

    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     } ],
    // CHECK-NEXT:     inputs: [ 0 ],
    // CHECK-NEXT:     outputs: [ 4 ],
    // CHECK-NEXT:     operators: [ {
    // CHECK-NEXT:       inputs: [ 0, 1 ],
    // CHECK-NEXT:       outputs: [ 2 ],
    // CHECK-NEXT:       builtin_options_type: SubOptions,
    // CHECK-NEXT:       builtin_options: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 13:32:53 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/saved_model/testdata/test.mlir

          %arg2: tensor<!tf_type.string> {tf_saved_model.bound_input = @z}
        ) -> (tensor<1x1xi32> {tf_saved_model.index_path = ["r"]})
          attributes {
            tf.entry_function = {control_outputs = "", inputs = "input:0", outputs = "result:0"},
            tf_saved_model.exported_names = ["serving_default"]
        }
      {
        %0 = "tf.ReadVariableOp"(%arg1) {device = ""} : (tensor<!tf_type.resource<tensor<3x1xi32>>>) -> tensor<3x1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. src/strings/clone_test.go

    		"short",
    		strings.Repeat("a", 42),
    	}
    	for _, input := range cloneTests {
    		clone := strings.Clone(input)
    		if clone != input {
    			t.Errorf("Clone(%q) = %q; want %q", input, clone, input)
    		}
    
    		if len(input) != 0 && unsafe.StringData(clone) == unsafe.StringData(input) {
    			t.Errorf("Clone(%q) return value should not reference inputs backing memory.", input)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 17:24:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultInputFingerprinterTest.groovy

        def "reports value snapshotting problem"() {
            def failure = new RuntimeException("Error")
            def input = "failing-value"
    
            when:
            fingerprintInputProperties { visitor ->
                visitor.visitInputProperty("input") { input }
            }
    
            then:
            1 * valueSnapshotter.snapshot(input) >> { throw failure }
            0 * _
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/GzipPacker.java

        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
                    return new GZIPOutputStream(super.openOutput());
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/unroll_batch_matmul_disabled.pbtxt

    # RUN: tf_tfl_translate -unfold_batchmatmul=false -tf-input-arrays=Placeholder,Placeholder_1 -tf-input-shapes=2,5,3:3,7 -tf-input-data-types=DT_FLOAT,DT_FLOAT -tf-output-arrays=MatMul -output-mlir %s -o - 2>&1 | FileCheck %s
    
    node {
      name: "Placeholder"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzer.go

    	for _, a := range c.analyzers {
    		for _, inputKind := range a.Metadata().Inputs {
    			if kinds.Contains(inputKind) {
    				selected = append(selected, a)
    				break
    			}
    		}
    	}
    	return Combine("subset", selected...)
    }
    
    // Metadata implements Analyzer
    func (c *InternalCombinedAnalyzer) Metadata() Metadata {
    	return Metadata{
    		Name:   c.name,
    		Inputs: combineInputs(c.analyzers),
    	}
    }
    
    // Analyze implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

      // Retrieve input names from model flags.
      std::vector<std::string> input_names;
      for (const auto& input : model_flags.input_arrays()) {
        input_names.push_back(input.name());
      }
    
      const auto& inputs = absl::StrJoin(input_names, ",");
      mlir::OpBuilder builder(*module);
      llvm::SmallVector<mlir::NamedAttribute> attrs;
      attrs.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
                    return new SnappyFramedOutputStream(super.openOutput());
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top