Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,468 for input0 (0.17 sec)

  1. tensorflow/cc/client/client_session.h

                 std::vector<Tensor>* outputs) const;
    
      /// Same as above, but use the mapping in `inputs` as feeds.
      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 std::vector<Tensor>* outputs) const;
    
      /// Same as above. Additionally runs the operations ins `run_outputs`.
      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 const std::vector<Operation>& run_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/insert_call_once_op.mlir

      }
    
      func.func @serving_default(%arg0: tensor<i64> {tf_saved_model.index_path = ["x"]}) -> (tensor<*x!tf_type.string> {tf_saved_model.index_path = ["r"]})
      attributes {tf.entry_function = {control_outputs = "", inputs = "input:0", outputs = "hash_table_Lookup/LookupTableFindV2:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %cst = arith.constant dense<"f"> : tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top