Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for Implementation (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/c/c_api_macros.h

    // the datatype for boolean tensors.
    #ifndef TF_Bool
    #define TF_Bool unsigned char
    #endif  // TF_Bool
    
    // Macro used to calculate struct size for maintaining ABI stability across
    // different struct implementations.
    #ifndef TF_OFFSET_OF_END
    #define TF_OFFSET_OF_END(TYPE, MEMBER) \
      (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
    #endif  // TF_OFFSET_OF_END
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/c/eager/abstract_context.h

    //
    // This serves as a factory for creating `AbstractOperation`s and for
    // registering traced functions.
    // Operations creation within a context can only be executed in that context
    // (for now at least).
    // Implementations of the context may contain some state e.g. an execution
    // environment, a traced representation etc.
    class AbstractContext {
     protected:
      enum AbstractContextKind { kGraph, kMlir, kEager, kTfrt, kTape, kOpHandler };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:16:58 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top