Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for Implementation (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow::quantization {
    
    // Declares pure virtual member functions for a python-side derived class to
    // override. This allows calling python implementations from the C++ layer.
    // Member functions should be pure not stateful; they should not access or rely
    // on member fields.
    class PyFunctionLibrary {
     public:
      virtual ~PyFunctionLibrary() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      //
      // Unlike wcscasecmp(), this function can handle NULL argument(s).
      // A NULL C string is considered different to any non-NULL wide C string,
      // including the empty string.
      // NB: The implementations on different platforms slightly differ.
      // On windows, this method uses _wcsicmp which compares according to LC_CTYPE
      // environment variable. On GNU platform this method uses wcscasecmp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.h

          return other.pred_ != pred_;
        }
    
       private:
        explicit DeadnessPredicate(void* pred) : pred_(pred) {}
    
        // This is really a Predicate*, but we don't want to expose that
        // implementation detail to our clients.  `pred_` has pointer equality so we
        // can just compare the pointer in operator== and operator!=.
        void* pred_;
    
        friend class DeadnessAnalysis;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Automated Interface (generates HTML Report Files).
     *
     *  Feb 2002      Initial implementation (AK)
     *
     *  13-Feb-2002   Single interface to automated_run_tests. (AK)
     *
     *  20-Jul-2004   New interface, doxygen comments. (JDS)
     */
    
    /** @file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    // `tsl::Env::Default` is used to generate the name.
    absl::StatusOr<std::string> GetLocalTmpFileName();
    
    // Creates a temporary directory on an environment defined by the implementation
    // of `tsl::Env` and returns its path. Returns an InternalError status if
    // failed.
    absl::StatusOr<std::string> CreateTmpDir(tsl::Env* env);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top