Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for Implementation (0.16 sec)

  1. tensorflow/compiler/jit/node_matchers.h

    namespace tensorflow {
    namespace testing {
    namespace matchers {
    
    namespace impl {
    
    using OutEdge = std::pair<const Node*, int>;
    
    // -----------------------------------------------------------------------------
    // Implementation details.
    
    // Properties that we match on for a particular Node.  If a particular property
    // is nullopt then any value for it is allowed.
    class NodeMatcherProperties {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Contains Interface to Run tests.
     *
     *  Aug 2001      Initial implementation. (AK)
     *
     *  09/Aug/2001   Contains generic run tests interface which can be used
     *                for any type of frontend interface framework. (AK)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/jit/compilability_check_util.h

        // that the user is not surprised when XLA is implicitly enabled. If the
        // user explicitly specifies to use XLA, it is fine to resort to a dummy
        // implementation. Currently Assert and CheckNumerics ops have dummy XLA
        // implementations.
        bool allow_eliding_assert_and_checknumerics_ops = false;
    
        // Whether ops that produce or consume DT_VARIANT values are allowed.  We
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // A user can override this behavior for a class type Foo by defining
    // a << operator in the namespace where Foo is defined.
    //
    // We put this operator in namespace 'internal2' instead of 'internal'
    // to simplify the implementation, as much code in 'internal' needs to
    // use << in STL, which would conflict with our own << were it defined
    // in 'internal'.
    //
    // Note that this operator<< takes a generic std::basic_ostream<Char,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

     public:
      virtual ~DeathTestFactory() { }
      virtual bool Create(const char* statement, const RE* regex,
                          const char* file, int line, DeathTest** test) = 0;
    };
    
    // A concrete DeathTestFactory implementation for normal use.
    class DefaultDeathTestFactory : public DeathTestFactory {
     public:
      virtual bool Create(const char* statement, const RE* regex,
                          const char* file, int line, DeathTest** test);
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/cgo/internal/testcarchive/testdata/main_windows.c

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
     * Dummy implementations for Windows, because Windows doesn't
     * support Unix-style signal handling.
     */
    
    int install_handler() {
    	return 0;
    }
    
    
    int check_handler() {
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 343 bytes
    - Viewed (0)
Back to top