Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for output$1 (0.24 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

        y = math_ops.add(x, z)
      array_ops.identity(y, name='result')
    
    
    def tftop_k(_):
      x = array_ops.placeholder(dtypes.int32, shape=[5], name='x')
      output = nn_ops.top_k(x, 2, name='values')
      array_ops.identity(output[1], name='indices')
    
    
    def tfvariable_readonly(_):
      x = variables.Variable(1000.0, name='x')
      unused_y = variables.Variable(1000.0, name='y')
      old_x = x.value()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 21);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 44);
        output[0] = seedA + part4;
        output[1] = seedB + c;
      }
    
      private static long hashLength0to16(byte[] bytes, int offset, int length) {
        if (length >= 8) {
          long mul = K2 + length * 2L;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/FarmHashFingerprint64.java

        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 21);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 44);
        output[0] = seedA + part4;
        output[1] = seedB + c;
      }
    
      private static long hashLength0to16(byte[] bytes, int offset, int length) {
        if (length >= 8) {
          long mul = K2 + length * 2L;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

                PublishArtifact artifact = artifacts[0]
                assert artifact.name == 'toto'
            }
            1 * variant.setDescription(_)
            _ * sourceSet.getOutput() >> output
            1 * output.getClassesDirs() >> classes
            1 * sourceSet.getName()
            0 * _
        }
    
        def "configures attributes"() {
            def attrs = AttributeTestUtil.attributesFactory().mutable()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

                          }
                        }));
    
      string constructor_call_str = absl::Substitute(
          "    tensorflow::ops::$0(scope.WithOpName(\"output\")$1);\n",
          op_info.op_name,
          strings::StrCat(
              op_info.api_def.arg_order().empty()
                  ? absl::StrJoin(op_info.api_def.in_arg(), "",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            """
            buildFile.text = """
                task t
            """
    
            when:
            succeeds "t", "--scan"
    
            then:
            fixture.issuedNoPluginWarningCount(output, 1)
        }
    
        def "does not auto-apply plugin when Gradle Enterprise plugin is applied using plugin ID"() {
            when:
            gradleEnterpriseFixture.publishDummyPlugin(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/slices/example_test.go

    	})
    	fmt.Println(result)
    	// Output:
    	// 1
    }
    
    func ExampleContainsFunc() {
    	numbers := []int{0, 42, -10, 8}
    	hasNegative := slices.ContainsFunc(numbers, func(n int) bool {
    		return n < 0
    	})
    	fmt.Println("Has a negative:", hasNegative)
    	hasOdd := slices.ContainsFunc(numbers, func(n int) bool {
    		return n%2 != 0
    	})
    	fmt.Println("Has an odd number:", hasOdd)
    	// Output:
    	// Has a negative: true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. test/copy.go

    	input8, output8 = output8, input8
    	input16, output16 = output16, input16
    	input32, output32 = output32, input32
    	input64, output64 = output64, input64
    	in := 0
    	out := 13
    	for i := range input8 {
    		input8[i] = u8(in)
    		output8[i] = u8(out)
    		outputS[i] = u8(out)
    		input16[i] = u16(in)
    		output16[i] = u16(out)
    		input32[i] = u32(in)
    		output32[i] = u32(out)
    		input64[i] = u64(in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver.mlir

        %cst = stablehlo.constant dense<0.000000e+00>: tensor<10x1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-executor-to-functional.mlir

      %graph_result = tf_executor.graph {
        %output0, %control0 = tf_executor.island {
          %a = "tf.opA"(%arg0) : (tensor<i32>) -> tensor<i32>
          tf_executor.yield %a : tensor<i32>
        }
        %output1, %control1 = tf_executor.island {
          %b = "tf.opB"(%output0) : (tensor<i32>) -> tensor<i32>
          tf_executor.yield %b : tensor<i32>
        }
        tf_executor.fetch %output1 : tensor<i32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top