Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 95 of 95 for Implementation (0.18 sec)

  1. tensorflow/c/c_api_macros.h

    // the datatype for boolean tensors.
    #ifndef TF_Bool
    #define TF_Bool unsigned char
    #endif  // TF_Bool
    
    // Macro used to calculate struct size for maintaining ABI stability across
    // different struct implementations.
    #ifndef TF_OFFSET_OF_END
    #define TF_OFFSET_OF_END(TYPE, MEMBER) \
      (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
    #endif  // TF_OFFSET_OF_END
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_context.h

    //
    // This serves as a factory for creating `AbstractOperation`s and for
    // registering traced functions.
    // Operations creation within a context can only be executed in that context
    // (for now at least).
    // Implementations of the context may contain some state e.g. an execution
    // environment, a traced representation etc.
    class AbstractContext {
     protected:
      enum AbstractContextKind { kGraph, kMlir, kEager, kTfrt, kTape, kOpHandler };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:16:58 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
      int status = 0;
      // gcc's implementation of typeid(T).name() mangles the type name,
      // so we have to demangle it.
    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    #  if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC)
      int status = 0;
      // gcc's implementation of typeid(T).name() mangles the type name,
      // so we have to demangle it.
    #   if GTEST_HAS_CXXABI_H_
      using abi::__cxa_demangle;
    #   endif  // GTEST_HAS_CXXABI_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental.h

    TF_CAPI_EXPORT extern void TFE_HostAddressSpace(TFE_Context* ctx,
                                                    TF_Buffer* buf);
    
    // APIs for generically dealing with op attributes (e.g. when forwarding them
    // through custom device implementations).
    //
    // TODO(allenl): Currently these are black boxes, but we should have some way to
    // inspect values. This would let people e.g. copy over most attributes and then
    // modify some based on their values.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top