Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,405 for xdefine (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h

    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_FREEZEVARIABLESTESTPASS
    #define GEN_PASS_DECL_INITTEXTFILETOIMPORTSAVEDMODELTESTPASS
    #define GEN_PASS_DECL_INITTEXTFILETOIMPORTTESTPASS
    #define GEN_PASS_DECL_INITIALIZEVARIABLESINSESSIONINITIALIZERPASS
    #define GEN_PASS_DECL_LIFTVARIABLESINVALIDSESSIONTESTPASS
    #define GEN_PASS_DECL_LIFTVARIABLESTESTPASS
    #define GEN_PASS_DECL_RESOURCEANALYZERTESTPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      LayoutAssignmentPass(const LayoutAssignmentPass& pass) {}
    
      void runOnOperation() final;
    };
    
    #define GEN_PASS_DEF_MOVETRANSPOSESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // MoveTransposesPass moves all Transpose ops to the beginning or to the end of
    // the basic block where they are defined. This will allow canonicalzer to
    // delete redundant transposes.
    class MoveTransposesPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // the given type-parameterized test case are defined in.  The exact
    // name of the namespace is subject to change without notice.
    # define GTEST_CASE_NAMESPACE_(TestCaseName) \
      gtest_case_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Expands to the name of the variable used to remember the names of
    // the defined tests in the given test case.
    # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "hello.h", """
                #ifndef HELLO_H
                #define HELLO_H
                #ifdef _WIN32
                #define DLL_FUNC __declspec(dllexport)
                #else
                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  BOOST_VERSION / 100000 is the major version
    
    #define BOOST_VERSION 105500
    
    //
    //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    //  but as a *string* in the form "x_y[_z]" where x is the major version
    //  number, y is the minor version number, and z is the patch level if not 0.
    //  This is used by <config/auto_link.hpp> to select which library version to link to.
    
    #define BOOST_LIB_VERSION "1_55"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/crypto/aes/asm_ppc64x.s

    #include "textflag.h"
    
    // For expandKeyAsm
    #define INP     R3
    #define BITS    R4
    #define OUTENC  R5 // Pointer to next expanded encrypt key
    #define PTR     R6
    #define CNT     R7
    #define ROUNDS  R8
    #define OUTDEC  R9  // Pointer to next expanded decrypt key
    #define TEMP    R19
    #define ZERO    V0
    #define IN0     V1
    #define IN1     V2
    #define KEY     V3
    #define RCON    V4
    #define MASK    V5
    #define TMP     V6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    include("sub-project-b")
    include("sub-project-c")
    ----
    <1> Define the project name.
    <2> Add subprojects.
    =====
    
    [.multi-language-sample]
    =====
    .settings.gradle
    [source,groovy]
    ----
    rootProject.name = 'root-project'   // <1>
    
    include('sub-project-a')            // <2>
    include('sub-project-b')
    include('sub-project-c')
    ----
    <1> Define the project name.
    <2> Add subprojects.
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    include('sub-project-b')
    include('sub-project-c')
    ----
    <1> Define the location of plugins.
    <2> Apply settings plugins.
    <3> Define the root project name.
    <4> Define dependency resolution strategies.
    <5> Add subprojects to the build.
    =====
    ====
    
    === 1. Define the location of plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_stack_unix.c

    #ifndef _GNU_SOURCE // pthread_getattr_np
    #define _GNU_SOURCE
    #endif
    
    #include <pthread.h>
    #include "libcgo.h"
    
    void
    x_cgo_getstackbound(uintptr bounds[2])
    {
    	pthread_attr_t attr;
    	void *addr;
    	size_t size;
    
    	// Needed before pthread_getattr_np, too, since before glibc 2.32
    	// it did not call pthread_attr_init in all cases (see #65625).
    	pthread_attr_init(&attr);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 03:44:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/benchmark_main.template

    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_binary rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    #include "{{TFCOMPILE_HEADER}}"  // NOLINT(whitespace/braces)
    // clang-format on
    
    #include "tensorflow/compiler/aot/benchmark.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top