Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for more (0.04 sec)

  1. tensorflow/cc/framework/ops.h

    #include "absl/strings/str_cat.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/lib/hash/hash.h"
    #include "tensorflow/core/lib/strings/strcat.h"
    
    namespace tensorflow {
    
    /// @defgroup core Core Tensorflow API
    
    class Output;
    
    /// @addtogroup core
    /// @{
    
    /// Represents a node in the computation graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

        if (llvm::isa<FixedOutputRangeInterface, SameScalesOpInterface>(def) ||
            !def->hasTrait<OpTrait::quant::QuantizableResult>()) {
          return failure();
        }
    
        // This op should not clobber def, if more than one requant of this value.
        if (!pre_quantized.hasOneUse()) {
          return failure();
        }
    
        op.emitWarning("Remove trivial `rescale` op. Please fix the source graph.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

        llvm::APSInt result(storage_bit_width_, !is_signed_);
        fixed_point.convertToInteger(result, round_mode_, &lossy);
    
        return std::move(result);
      }
    
      int64_t quantizeFloatToInt64(APFloat expressed_value) const {
        const APInt q_value = quantizeFloatToInt(std::move(expressed_value));
        return is_signed_ ? q_value.getSExtValue() : q_value.getZExtValue();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/BUILD

            ":util",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core/platform:errors",
            "//tensorflow/core/platform:strcat",
            "//tensorflow/core/platform:tstring",
            "//tensorflow/core/util/tensor_bundle",
            "//tensorflow/core/util/tensor_bundle:byteswaptensor",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/log",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util.h

    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/control_flow.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/lib/gtl/cleanup.h"
    #include "tensorflow/core/lib/strings/stringprintf.h"
    #include "tensorflow/core/public/version.h"
    #include "tensorflow/core/util/dump_graph.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.h

    #include "absl/strings/str_cat.h"
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/lib/gtl/array_slice.h"
    
    namespace tensorflow {
    
    class Graph;
    class GraphDef;
    class NodeBuilder;
    struct CompositeOpScopes;
    
    /// @addtogroup core
    /// @{
    
    /// A `Scope` object represents a set of related TensorFlow ops that have the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateCastBf16OpsToF32Pass();
    
    // Creates a pass that lifts HashTable ops as function arguments. In the graph
    // execution mode, resource ops with the same `shared_name` attribute point to
    // the same underlying resource. This is not true in the eager execution mode.
    // Lifting resource ops as arguments will help unifying them across functions.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLiftHashTableOpsAsArgsPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

    //
    // The custom device defines copy operations for moving TensorHandles on and
    // off, and an execution operation for named operations. Often execution will
    // simply wrap op execution on one or more physical devices.
    //
    // device_info is an opaque caller-defined type stored with the custom device
    // which is passed to the functions referenced in the TFE_CustomDevice struct
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

    #include <optional>
    #include <string>
    #include <unordered_map>
    #include <utility>
    #include <vector>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/lite/tools/optimize/reduced_precision_support.h"
    
    namespace mlir {
    namespace quant {
    
    // Stores information about how to quantize a user-specified custom operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

        llvm::ArrayRef<int64_t> device_assignment_attr);
    
    // Virtual device name of the passed logical core. The logical core is the index
    // of a core within a replica.
    std::string GetDeviceAliasForLogicalCore(int core_index);
    
    // Virtual device name of the host that is associated with the passed logical
    // core. The logical core is the index of a core within a replica.
    std::string GetDeviceAliasForHostOfLogicalCore(int core_index);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top