Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for Implementation (1.25 sec)

  1. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

        return Base::getChecked(emitError, context, attrs);
      }
    
      static Derived get(MLIRContext* context) { return get({}, context); }
    
      // TODO(fengliuai): fix the implementation
      static LogicalResult verify(function_ref<InFlightDiagnostic()> emitError,
                                  ArrayRef<StringAttr> attrs) {
        return success();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Interface for simple test runner.
     *
     *  11-Aug-2004   Initial implementation of basic test runner interface. (JDS)
     */
    
    /** @file
     * Basic interface with output to stdout.
     */
    /** @addtogroup Basic
     * @{
     */
    
    #ifndef CUNIT_BASIC_H_SEEN
    #define CUNIT_BASIC_H_SEEN
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_tensor.h

    #include "tensorflow/core/framework/allocator.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/mutex.h"
    
    namespace tensorflow {
    
    // The implementation of a Tensor for an XlaDevice. All device tensors are
    // actually one of these.
    //
    // To distinguish between "normal" device tensors and XlaTensors, the raw
    // pointer data stored in the TensorBuffer is a tagged pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    // current test part result reporter. Besides checking if fatal failures were
    // reported, it only delegates the reporting to the former result reporter.
    // The original result reporter is restored in the destructor.
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    class GTEST_API_ HasNewFatalFailureHelper
        : public TestPartResultReporterInterface {
     public:
      HasNewFatalFailureHelper();
      virtual ~HasNewFatalFailureHelper();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    // current test part result reporter. Besides checking if fatal failures were
    // reported, it only delegates the reporting to the former result reporter.
    // The original result reporter is restored in the destructor.
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    class GTEST_API_ HasNewFatalFailureHelper
        : public TestPartResultReporterInterface {
     public:
      HasNewFatalFailureHelper();
      virtual ~HasNewFatalFailureHelper();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session.h

                 const std::vector<Operation>& run_outputs,
                 std::vector<Tensor>* outputs, RunMetadata* run_metadata) const;
    
      /// Same as above. Additionally allows user to provide custom threadpool
      /// implementation via ThreadPoolOptions.
      Status Run(const RunOptions& run_options, const FeedType& inputs,
                 const std::vector<Output>& fetch_outputs,
                 const std::vector<Operation>& run_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top