Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for cat1 (0.06 sec)

  1. src/crypto/internal/nistec/p256_asm_s390x.s

    	VSLDB $12, T2, T1, T1
    
    	VACCQ  T0, ADD3H, CAR1
    	VAQ    T0, ADD3H, T0
    	VACCCQ T1, ADD4H, CAR1, T2
    	VACQ   T1, ADD4H, CAR1, T1
    
    	VACCQ  T0, RED1, CAR1
    	VAQ    T0, RED1, T0
    	VACCCQ T1, RED2, CAR1, CAR2
    	VACQ   T1, RED2, CAR1, T1
    	VAQ    T2, CAR2, T2
    
    	// ---------------------------------------------------
    
    	VZERO   RED3
    	VSCBIQ  P0, T0, CAR1
    	VSQ     P0, T0, ADD1H
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VADDCUQ  T0, RED1, CAR1       // VACCQ  T0, RED1, CAR1
    	VADDUQM  T0, RED1, T0         // VAQ    T0, RED1, T0
    	VADDECUQ T1, RED2, CAR1, CAR2 // VACCCQ T1, RED2, CAR1, CAR2
    	VADDEUQM T1, RED2, CAR1, T1   // VACQ   T1, RED2, CAR1, T1
    	VADDUQM  T2, CAR2, T2         // VAQ    T2, CAR2, T2
    
    	// ---------------------------------------------------
    
    	VSUBCUQ  T0, PL, CAR1       // VSCBIQ  PL, T0, CAR1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK-DAG: %[[CST1:.*]] = arith.constant dense<1> : tensor<4xi32>
      // CHECK-DAG: %[[cst_1:.*]] = arith.constant dense<[1, 2, 3, 1]> : tensor<4xi32>
      // CHECK: %0 = "tf.Reshape"(%arg0, %[[cst_1]]) : (tensor<2x3xf32>, tensor<4xi32>) -> tensor<1x2x3x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

    // CHECK:           %[[SUB:.*]] = "tf.Sub"(%[[CST]], %[[SCATTER]]) : (tensor<i32>, tensor<1x24xi32>) -> tensor<1x24xi32>
    // CHECK:           %[[MUL:.*]] = "tf.Mul"(%[[SUB]], %[[CAST0]]) : (tensor<1x24xi32>, tensor<1x24xi32>) -> tensor<1x24xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK: %[[cat:.*]] = "tfl.concatenation"(%arg0, %[[max]]) <{axis = 3 : i32, fused_activation_function = "NONE"}> : (tensor<1x73x73x64x!quant.uniform<u8:f32, 1.000000e+00>>, tensor<1x73x73x96x!quant.uniform<u8:f32, 2.000000e+00>>) -> tensor<1x73x73x160x!quant.uniform<u8:f32, 1.000000e+00>>
    // CHECK: return %[[cat]] : tensor<1x73x73x160x!quant.uniform<u8:f32, 1.000000e+00>>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // This statement will instantiate all tests from FooTest again, each
    // with parameter values "cat" and "dog":
    
    const char* pets[] = {"cat", "dog"};
    INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
    
    // The tests from the instantiation above will have these names:
    //
    //    * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
    //    * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // This statement will instantiate all tests from FooTest again, each
    // with parameter values "cat" and "dog":
    
    const char* pets[] = {"cat", "dog"};
    INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
    
    // The tests from the instantiation above will have these names:
    //
    //    * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
    //    * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

       * the beginning and from the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "cat"}.
       *
       * <p>Note that:
       *
       * <pre>{@code
       * CharMatcher.inRange('\0', ' ').trimFrom(str)
       * }</pre>
       *
       * ... is equivalent to {@link String#trim()}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/debug/elf/file_test.go

    			{"", 3, 0, 24, 0, 0, "", ""},
    			{"", 3, 0, 25, 0, 0, "", ""},
    			{"", 3, 0, 26, 0, 0, "", ""},
    			{"", 3, 0, 27, 0, 0, "", ""},
    			{"", 3, 0, 28, 0, 0, "", ""},
    			{"", 3, 0, 29, 0, 0, "", ""},
    			{"crt1.c", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"<command line>", 4, 0, 65521, 0, 0, "", ""},
    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top