Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,025 for input0 (0.07 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

              "is_variable": true,
              "quantization": {
                "min": [-0.5],
                "max": [0.5]
              }
            }
          ],
          "inputs": [0],
          "outputs": [24],
          "operators": [
            {
              "inputs": [
                0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
              ],
              "outputs": [24],
              "intermediates": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // RUN: tf-tfrt-opt -tf-to-tfrt %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(tf-to-tfrt{target-tpurt=true tpu-use-core-selector=false})' %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    // CHECK-LABEL: func @_tfrt_fallback_init
    // CHECK-SAME: {{.*}} !tfrt.chain
    // CHECK: tfrt_fallback_async.createop(%arg0) key(0) device("/device:CPU:0") "tf.ParseExampleV2"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/RuleSourceBackedRuleActionTest.groovy

            void theRule(List subject, String input1, Integer input2, Set input3) {
                subject.add(input1)
                subject.add(input2)
                subject.addAll(input3)
            }
        }
    
        static class ArrayListRuleSource {
            @Mutate
            void theRule(ArrayList subject, String input1, Integer input2, Set input3) {
                subject.add(input1)
                subject.add(input2)
                subject.addAll(input3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/CalculatedTaskInputFileCollectionTest.groovy

            0 * calculated._
        }
    
        def "notifies each of the inputs of task start and complete"() {
            def input1 = Mock(LifecycleAwareValue)
            def input2 = "other"
            def input3 = Mock(LifecycleAwareValue)
            def fileCollection = new CalculatedTaskInputFileCollection(taskDependencyFactory, ":task", Stub(MinimalFileSet), input1, input2, input3)
    
            when:
            fileCollection.prepareValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/signature_with_multiple_entry_points.mlir

    // CHECK: func @add(
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["result"]}
    // CHECK-SAME: tf.entry_function = {inputs = "input1:0,input2:0", outputs = "result:0"}
    // CHECK-SAME: tf_saved_model.exported_names = ["add"]
    
    // CHECK: func @sub(
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. src/hash/example_test.go

    package hash_test
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"encoding"
    	"fmt"
    	"log"
    )
    
    func Example_binaryMarshaler() {
    	const (
    		input1 = "The tunneling gopher digs downwards, "
    		input2 = "unaware of what he will find."
    	)
    
    	first := sha256.New()
    	first.Write([]byte(input1))
    
    	marshaler, ok := first.(encoding.BinaryMarshaler)
    	if !ok {
    		log.Fatal("first does not implement encoding.BinaryMarshaler")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 04 03:47:34 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedDecoderTest.groovy

        def "can read from stream and then restart to use another stream"() {
            def input1 = encoded("string 1")
            def input2 = encoded("string 2")
    
            given:
            def decoder = new KryoBackedDecoder(input1)
            decoder.readString()
            decoder.restart(input2)
    
            expect:
            decoder.readPosition == 0
            decoder.readString() == "string 2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DirectNodeInputUsingModelAction.java

            return new AbstractModelAction<T>(reference, descriptor, input1, input2) {
                @Override
                public void execute(MutableModelNode modelNode, List<ModelView<?>> inputs) {
                    action.execute(modelNode,
                        Cast.<I>uncheckedCast(inputs.get(0).getInstance()),
                        Cast.<J>uncheckedCast(inputs.get(1).getInstance())
                    );
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/DefaultRuleActionAdapterTest.groovy

            then:
            ruleAction.inputTypes == []
            closureCalled == "it"
    
            when:
            ruleAction = ruleActionAdapter.createFromClosure(String, { String s, String input1, Integer input2 -> closureCalled = input1 + input2 })
            ruleAction.execute("", ["foo", 3])
    
            then:
            ruleAction.inputTypes == [String, Integer]
            closureCalled == "foo3"
        }
    
        def "can adapt from action" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_output_override.mlir

    // CHECK-NEXT:    name: "min_runtime_version",
    // CHECK-NEXT:    buffer: 6
    // CHECK-NEXT:  } ],
    // CHECK-NEXT:  signature_defs: [ {
    // CHECK-NEXT:    inputs: [ {
    // CHECK-NEXT:      name: "input1",
    // CHECK-NEXT:      tensor_index: 1
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      name: "input2"
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    outputs: [ {
    // CHECK-NEXT:      name: "end_logits",
    // CHECK-NEXT:      tensor_index: 4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top