Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,164 for Tinput (0.13 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".blue")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        println "Input exists: \${input.exists()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_xla.mlir

      func.func @gather_with_float_output(%arg0: tensor<1x3x2x1024xf32> {tf_saved_model.index_path = ["input1"]}, %arg1: tensor<1xi32> {tf_saved_model.index_path = ["input2"]}) -> (tensor<1x3x1x1xf32> {tf_saved_model.index_path = ["output"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

      (TF_MatMulOp:$matmul
        (TF_SubOp (TF_CastOp $input, $truncate1), $input_zp),
        (TF_SubOp (TF_CastOp $weight, $truncate2), $weight_zp),
        $transpose_a, $transpose_b, $grad_a, $grad_b),
      (CreateXlaDotV2OpFromTfMatMulOp
        $input, $weight, $input_zp, $weight_zp, $matmul, $transpose_a, $transpose_b),
      [(IsInt8ElementType $input),
       (IsInt8ElementType $weight),
       (HasRank $input),
       (HasRank $weight),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                    @Input
                    URL getDirect() { null }
    
                    @Input
                    Provider<URL> getProviderInput() { propertyInput }
    
                    @Input
                    abstract Property<URL> getPropertyInput();
    
                    @Input
                    abstract SetProperty<URL> getSetPropertyInput();
    
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedDecoder.java

            input = new Input(this.inputStream, bufferSize);
        }
    
        @Override
        protected int maybeReadBytes(byte[] buffer, int offset, int count) {
            return input.read(buffer, offset, count);
        }
    
        @Override
        protected long maybeSkip(long count) throws IOException {
            // Work around some bugs in Input.skip()
            int remaining = input.limit() - input.position();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

                "unmodified/input": fingerprint("input", 3),
                "moved/new/input": fingerprint("input", 3)
            ]) == [
                modified("modified-with-collision/input": "input"),
                removed("removed/input": "input"),
                modified("modified/input": "input"),
                added("added/input": "input")
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/web-platform-test-toascii.json

        "input": "aa--",
        "output": "aa--"
      },
      {
        "input": "a†--",
        "output": "xn--a---kp0a"
      },
      {
        "input": "ab--c",
        "output": "ab--c"
      },
      {
        "comment": "Label with leading hyphen",
        "input": "-x",
        "output": "-x"
      },
      {
        "input": "-†",
        "output": "xn----xhn"
      },
      {
        "input": "-x.xn--zca",
        "output": "-x.xn--zca"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // L2Loss is lowered using the formula,
    // L2Loss(input) = Sum(input * input) / 2
    
    // TODO(hinsu): Support unranked tensors once b/144593778 is resolved to not
    // cause result type mismatch.
    def LowerL2LossOp :
      Pat<(TF_L2LossOp AnyRankedTensor:$input),
          (TF_DivOp
            (TF_SumOp (TF_MulOp $input, $input),
                      (TF_ConstOp (GetAllAxes $input)),
                      /*keep_dims=*/ConstBoolAttrFalse),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

                    outFile = file("out.txt")
                }
            """
            def input = file("in.txt")
            def output = file("out.txt")
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            input.text = "12"
            configurationCacheRun(":transformer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top