Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for Implementation (0.26 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

      // Will be nullptr if conversion is not supported.
      const Type expressed_type;
    };
    
    // Reference implementation of converting between real numbers and values
    // represented by a UniformQuantizedType.
    // Note that this is not expected to be speedy and may be superseded eventually
    // by a more optimal implementation.
    // Also, the interface assumes that quantization is done per-layer and will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     */
    
    /*
     *  Contains all the Type Definitions and functions declarations
     *  for the CUnit test database maintenance.
     *
     *  Aug 2001      Initial implementation. (AK)
     *
     *  09/Aug/2001   Added Preprocessor conditionals for the file. (AK)
     *
     *  24/aug/2001   Made the linked list from SLL to DLL(doubly linked list). (AK)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    template <typename ConcreteType>
    class LayoutAgnostic : public TraitBase<ConcreteType, LayoutAgnostic> {};
    
    // Trait to indicate operations that cannot be duplicated as they might carry
    // certain state around within their implementations.
    template <typename ConcreteType>
    class CannotDuplicate : public TraitBase<ConcreteType, CannotDuplicate> {
     public:
      static LogicalResult verifyTrait(Operation* op) {
        if (isMemoryEffectFree(op))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            // The default nudging implementation of mlir quant library might cause
            // clamping during inference if the calibration range isn't wide enough.
            // So here we adjust the range to include 0.0.
            rmin = std::min(rmin, 0.0);
            rmax = std::max(rmax, 0.0);
            if (num_bits == 16) {
              // TODO: b/266536261 - Since the kernel implementation assumes that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    struct TraceInfo;                      // Information about a trace point.
    class ScopedTrace;                     // Implements scoped trace.
    class TestInfoImpl;                    // Opaque implementation of TestInfo
    class UnitTestImpl;                    // Opaque implementation of UnitTest
    
    // How many times InitGoogleTest() has been called.
    GTEST_API_ extern int g_init_gtest_count;
    
    // The text used in failure messages to indicate the start of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top