Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for defUse (0.21 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_OS_WINDOWS_MINGW 1
    # else
    #  define GTEST_OS_WINDOWS_DESKTOP 1
    # endif  // _WIN32_WCE
    #elif defined __APPLE__
    # define GTEST_OS_MAC 1
    # if TARGET_OS_IPHONE
    #  define GTEST_OS_IOS 1
    #  if TARGET_IPHONE_SIMULATOR
    #   define GTEST_OS_IOS_SIMULATOR 1
    #  endif
    # endif
    #elif defined __linux__
    # define GTEST_OS_LINUX 1
    # if defined __ANDROID__
    #  define GTEST_OS_LINUX_ANDROID 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_OS_WINDOWS_MINGW 1
    # else
    #  define GTEST_OS_WINDOWS_DESKTOP 1
    # endif  // _WIN32_WCE
    #elif defined __APPLE__
    # define GTEST_OS_MAC 1
    # if TARGET_OS_IPHONE
    #  define GTEST_OS_IOS 1
    #  if TARGET_IPHONE_SIMULATOR
    #   define GTEST_OS_IOS_SIMULATOR 1
    #  endif
    # endif
    #elif defined __linux__
    # define GTEST_OS_LINUX 1
    # if defined __ANDROID__
    #  define GTEST_OS_LINUX_ANDROID 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    // func p256OrdMul(res, in1, in2 *p256OrdElement)
    #define res_ptr R1
    #define x_ptr R2
    #define y_ptr R3
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define M0    V4
    #define M1    V5
    #define T0    V6
    #define T1    V7
    #define T2    V8
    #define YDIG  V9
    
    #define ADD1  V16
    #define ADD1H V17
    #define ADD2  V18
    #define ADD2H V19
    #define RED1  V20
    #define RED1H V21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #undef PL
    #undef PH
    #undef CAR1
    
    #define P3ptr   R3
    #define P1ptr   R4
    #define P2ptr   R5
    
    #define X1L    V0
    #define X1H    V1
    #define Y1L    V2
    #define Y1H    V3
    #define Z1L    V4
    #define Z1H    V5
    #define X2L    V6
    #define X2H    V7
    #define Y2L    V8
    #define Y2H    V9
    #define Z2L    V10
    #define Z2H    V11
    #define SEL    V12
    #define ZER    V13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    #define TEST_QUERY		0x00000400
    #define TEST_SUB		0x00000800
    #define TEST_UNSPECIFIED	0x00001000
    #define TEST_VERIFY		0x00002000
    #define TEST_AND		0x00004000
    #define TEST_OR			0x00008000
    
    #define TEST_DELIMIT		0x00010000
    #define TEST_OK			0x00020000
    #define TEST_SAME		0x00040000
    
    #define TEST_ACTUAL		0x00100000
    #define TEST_BASELINE		0x00200000
    #define TEST_FAIL		0x00400000
    #define TEST_PASS		0x00800000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

    };
    
    TEST_F(CApiFunctionTest, OneOp_ZeroInputs_OneOutput) {
      /*
       *                constant
       *                   |
       *                   v
       */
      // Define
      TF_Operation* c = ScalarConst(10, func_graph_, s_, "scalar10");
      Define(-1, {}, {}, {c}, {});
    
      // Use, run, and verify
      TF_Operation* func_op = Use({});
      Run({}, func_op, 10);
      VerifyFDef({"scalar10_0"}, {}, {{"scalar10", DT_INT32}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. .bazelrc

    # Default paths for TF_SYSTEM_LIBS
    build:linux --define=PREFIX=/usr
    build:linux --define=LIBDIR=$(PREFIX)/lib
    build:linux --define=INCLUDEDIR=$(PREFIX)/include
    build:linux --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include
    build:macos --define=PREFIX=/usr
    build:macos --define=LIBDIR=$(PREFIX)/lib
    build:macos --define=INCLUDEDIR=$(PREFIX)/include
    build:macos --define=PROTOBUF_INCLUDE_PATH=$(PREFIX)/include
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
    
    // Define this macro to 1 to omit the definition of FAIL(), which is a
    // generic name and clashes with some other libraries.
    #if !GTEST_DONT_DEFINE_FAIL
    # define FAIL() GTEST_FAIL()
    #endif
    
    // Generates a success with a generic message.
    #define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // TF-DAG: %[[cst_6:.*]] = "tf.Const"() <{value = dense<7.84313714E-4> : tensor<f32>}
    // TF-DAG: %[[cst_7:.*]] = "tf.Const"() <{value = dense<0.00117647066> : tensor<f32>}
    // TF-DAG: %[[cst_8:.*]] = "tf.Const"() <{value = dense<0.00602002116> : tensor<f32>}
    // TF-DAG: %[[cst_9:.*]] = "tf.Const"() <{value = dense<0> : tensor<i32>}
    // TF-DAG: %[[cst_10:.*]] = "tf.Const"() <{value = dense<0.0075123054> : tensor<f32>}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

        %cst_2 = "tfl.no_value"() {value = unit} : () -> none
        %cst_3 = arith.constant dense<1.0> : tensor<20x20xf32>
        %cst_7 = arith.constant dense<1.0> : tensor<20xf32>
        %cst_11 = arith.constant dense<1.0> : tensor<20x28xf32>
        %recurrent_input = arith.constant dense<1.0> : tensor<1x20xf32>
        %recurrent_stats = "quantfork.stats"(%recurrent_input) {layerStats = dense<[-2.0, 1.0]> : tensor<2xf32>} : (tensor<1x20xf32>) -> tensor<1x20xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top