Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for Implementation (0.14 sec)

  1. tensorflow/c/c_api_experimental.h

    TF_CAPI_EXPORT void TF_SetXlaMinClusterSize(int size);
    
    // Gets/Sets TF/XLA flag for whether(true) or not(false) to disable constant
    // folding. This is for testing to ensure that XLA is being tested rather than
    // Tensorflow's CPU implementation through constant folding.
    TF_CAPI_EXPORT unsigned char TF_GetXlaConstantFoldingDisabled();
    TF_CAPI_EXPORT void TF_SetXlaConstantFoldingDisabled(
        unsigned char should_enable);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Determines whether Google Test's own tr1 tuple implementation
    // should be used.
    #ifndef GTEST_USE_OWN_TR1_TUPLE
    // The user didn't tell us, so we need to figure it out.
    
    // We use our own TR1 tuple if we aren't sure the user has an
    // implementation of it already.  At this time, libstdc++ 4.0.0+ and
    // MSVC 2010 are the only mainstream standard libraries that come
    // with a TR1 tuple implementation.  NVIDIA's CUDA NVCC compiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/c/experimental/stream_executor/stream_executor.h

    // should allow registering a pluggable device with TensorFlow.
    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //     plugin or core implementation:
    //     * SE_ : set/filled by core unless explicitly marked otherwise.
    //     * SP_ : set/filled by plugin unless explicitly marked otherwise.
    //   * We use `struct_size` for version checking. It is exempt from the `SE/SP`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/c/ops.h

    // where <name> matches regexp [a-zA-Z][a-zA-Z0-9_]*.
    // By convention, names containing only capital letters are reserved for
    // attributes whose values can be inferred by the operator implementation if not
    // supplied by the user. If the attribute name contains characters other than
    // capital letters, the operator expects the user to provide the attribute value
    // at operation runtime.
    //
    // <type> can be:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. 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)
Back to top