Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Implementation (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // *containing* linked_ptr<> must have a constructor and destructor (even
    // if they do nothing!).
    //
    // Bill Gibbons suggested we use something like this.
    //
    // Thread Safety:
    //   Unlike other linked_ptr implementations, in this implementation
    //   a linked_ptr object is thread-safe in the sense that:
    //     - it's safe to copy linked_ptr objects concurrently,
    //     - it's safe to copy *from* a linked_ptr and read its underlying
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.h

      /// co-located on the device where op is placed.
      /// NOTE: This function is intended to be use internal libraries only for
      /// controlling placement of ops on to devices. Public use is not encouraged
      /// because the implementation of device placement is subject to change.
      Scope ColocateWith(const Operation& op) const;
      /// Convenience function for above.
      Scope ColocateWith(const Output& out) const { return ColocateWith(out.op()); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.h

        // their declared shapes for computations. Must be non-empty.
        std::vector<XlaShapeLayoutHelpers::ShapeDeterminationFns>
            shape_determination_fns;
    
        // If padded_shape_fn is empty, a default implementation that returns
        // the logical on-device shape without padding is used.
        PaddedShapeFn padded_shape_fn;
    
        // Set of devices to use. This controls which of the devices on the given
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/value.h

    ///
    /// Hashable TaggedValues overload `AbslHashValue`. Non-hashable structures
    /// return 0.
    template <>
    struct TaggedValueHash<TaggedValue> {
      size_t operator()(const TaggedValue& v) const;
    };
    
    /// @brief Hash implementation for TaggedValue Tuples.
    template <>
    struct TaggedValueHash<Tuple> {
      size_t operator()(const Tuple& t) const;
    };
    
    /// @brief The basic `TaggedValue` tagged union type.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // for more examples.
    //
    // In the future, we plan to publish the API for defining new parameter
    // generators. But for now this interface remains part of the internal
    // implementation and is subject to change.
    //
    //
    // A parameterized test fixture must be derived from testing::Test and from
    // testing::WithParamInterface<T>, where T is the type of the parameter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. 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)
  7. 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