Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for Implementation (0.23 sec)

  1. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    // eventually should allow registering a profiler with TensorFlow.
    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //   plug-in or core TensorFlow implementation:
    //     * TF_: Set/filled by core, unless marked otherwise.
    //     * TP_: Set/filled by plug-in, unless marked otherwise.
    //     * This prefix rule only applies to structures. Enumerations and methods
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/common/subgraph.h

    // Interface name here is the "hook" between the CallOp and FuncOps.
    // Take the following example:
    //
    // call @func_1_CPU {tac.interface_name = "func_1"}
    //
    // "func_1" is the interface name where "func_1_cpu" is the real implementation
    // we can have multiple FuncOps like "func_1_cpu" and "func_1_gpu" and they
    // both implement "func_1".
    //
    // The attribute on the FuncOp means what it actually implements while the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 05:18:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/test_utils.h

    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow::saved_model {
    
    // TODO(b/229726259) Switch to OSS version after it's available.
    // Simple implementation of a proto matcher comparing string representations.
    // Only works as ShapeProto's textual representation is deterministic.
    class ProtoStringMatcher {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 31 23:00:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    #include <string>
    
    #include "llvm/Support/CommandLine.h"
    
    // The commandline options are defined in LLVM style, so the caller should
    // use llvm::InitLLVM to initialize the options.
    //
    // Please see the implementation file for documentation of details of these
    // options.
    // TODO(jpienaar): Revise the command line option parsing here.
    extern llvm::cl::opt<std::string> input_file_name;
    extern llvm::cl::opt<std::string> output_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/c/python_api.h

    // TF_SessionRun will no longer extend the session on every call.
    //
    // We expose this here to allow fine-grained synchronization in multi-threaded
    // workloads, which is required since the Python implementation depends on the
    // above mutation methods. This allows us to prevent modifications to nodes in
    // the graph after the session has been made aware of them.
    void ExtendSession(TF_Session* session, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem.h

    #include <memory>
    
    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    #include "tensorflow/core/platform/file_system.h"
    
    /// This file builds classes needed to hold a filesystem implementation in the
    /// modular world. Once all TensorFlow filesystems are converted to use the
    /// plugin based approach, this file will replace the one in core/platform and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

    //
    // The caller of c++ interfaces should make sure to pass valid serialized
    // `ProtoT` objects as arguments. Failing to do so results in raising a
    // `ValueError`. Similarly, the python implementation of a c++ virtual member
    // function that return an `ProtoT` should return a valid serialized `ProtoT`.
    //
    // See https://pybind11.readthedocs.io/en/stable/advanced/cast/custom.html
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *                Removed CUNIT_MAX_STRING_LENGTH - dangerous since not enforced.
     *                Fixed off-by-1 error in CU_translate_special_characters(), 
     *                modifying implementation & results in some cases.  User can 
     *                now tell if conversion failed. (JDS)
     */
    
    /** @file
     *  Utility functions (user interface).
     */
    /** @addtogroup Framework
     * @{
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.h

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    // This is the TF eager runtime implementation of SignatureDefFunction (separate
    // from the TFRT implementation). The user-facing API of SignatureDefFunctions
    // and their semantic differences from ConcreteFunction are described here:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top