Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for Implementation (0.22 sec)

  1. 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)
  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/cc/experimental/libtf/module.h

    namespace tf {
    namespace libtf {
    namespace impl {
    
    // The main interface for taking a serialized saved model and getting back a
    // fully-built model.
    //
    // Implementation steps:
    //
    //   1) For each function def in the SavedModel, register it with the runtime.
    //   2) For each object in the object graph def, build it.
    //   3) For each variable stored in the checkpoint in the SavedModel,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // if (and only if) op1 is in extra_dependencies(op2, true), then op2
    // must also be in extra_dependencies(op1, false).
    // This function is called multiple times during the topological sort,
    // so the implementation should preferably be constant-time.
    typedef llvm::function_ref<llvm::SmallVector<Operation *, 4> const &(
        Operation *, bool incoming)>
        ExtraDependenciesFunction;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.h

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    // TF Eager Runtime-based implementation of a "ConcreteFunction" loaded from a
    // saved model.
    class TFConcreteFunction : public ConcreteFunction {
     public:
      // Factory function for creating a TFConcreteFunction.
      //
      // Params:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

    #include "tensorflow/c/experimental/saved_model/core/signature_def_function.h"
    #include "tensorflow/cc/saved_model/bundle_v2.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // An implementation of the SavedModelAPI using the TF Eager runtime. See
    // https://github.com/tensorflow/community/blob/master/rfcs/20200218-tf-c-saved-model.md
    // Conceptually, there are many differences between a tf.function and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/c/eager/abstract_tensor_handle.h

      // appropriate.
      virtual tensorflow::FullTypeDef FullType() const = 0;
    
      // The default debug string includes a shape, dtype and FullType.
      // Implementations are free to override it with something more informative.
      virtual std::string DebugString() const;
    
      AbstractTensorHandleKind getKind() const { return kind_; }
    
     private:
      const AbstractTensorHandleKind kind_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:30:36 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top