Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 945 for abs8 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

    #include "tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.h"
    
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/string_view.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/SMLoc.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/ToolOutputFile.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/linalg_grad.cc

    // absl::nullopt.
    //
    // Parameters:
    //   subscripts: A string denoting the einsum subscript (e.g. `ab...cd`)
    //   label: The single character axis label.
    absl::optional<int> EinsumGetAxisFromLabel(absl::string_view subscripts,
                                               char label) {
      std::vector<absl::string_view> splits = absl::StrSplit(subscripts, kEllipsis);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/variable_info_util.cc

        prev = mu;
      }
      VLOG(4) << "Finished acquiring variable locks.";
      return absl::OkStatus();
    }
    
    Status LockVariables(absl::Span<VariableInfo> variables) {
      std::vector<VariableInfo*> variable_ptrs;
      variable_ptrs.reserve(variables.size());
      for (auto& var : variables) {
        variable_ptrs.push_back(&var);
      }
      return LockVariables(absl::MakeSpan(variable_ptrs));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

    #include <cstdint>
    #include <memory>
    #include <string>
    #include <vector>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/log/log.h"
    #include "absl/strings/ascii.h"
    #include "absl/strings/match.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/str_split.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/StringMap.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

    // * `file_path` is not `nullopt`.
    bool ShouldSaveReport(absl::Nullable<Pass*> pass, absl::Nullable<Operation*> op,
                          const std::optional<std::string>& file_path) {
      return file_path != std::nullopt && IsQuantizeCompositeFunctionPass(pass, op);
    }
    
    void SaveReport(const QuantizationReport& report,
                    const absl::string_view file_path) {
      if (const absl::Status save_status = report.Save(file_path);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    
    #include <string>
    #include <unordered_map>
    
    #include "absl/algorithm/container.h"
    #include "absl/container/inlined_vector.h"
    #include "absl/strings/match.h"
    #include "absl/strings/numbers.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "xla/status_macros.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/BUILD

            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "@com_google_absl//absl/algorithm:container",
            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/types:optional",
        ],
    )
    
    tf_cc_test(
        name = "constant_loading_test",
        srcs = [
            "constant_loading_test.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // Convenience function for converting the optional `report_file_path` field to
    // `std::optional<absl::string_view>`, where `std::nullopt` represents that the
    // field is not explicitly set. The returned value is a reference type
    // (`absl::string_view`) so its lifetime is bound to the input `config`.
    inline std::optional<absl::string_view> GetReportFilePath(
        const QuantizationConfig& config ABSL_ATTRIBUTE_LIFETIME_BOUND) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

    namespace mlir {
    namespace TFL {
    
    bool IsQuantized(const tflite::TensorT& tensor);
    
    absl::StatusOr<mlir::quant::QuantizedType> GetQuantizedType(
        const tflite::TensorT& tensor, mlir::Builder builder,
        bool is_constant = false, mlir::Type storage_type = {});
    
    // Imports float tensor with calibration value into calibrated quantized type.
    absl::StatusOr<mlir::quant::QuantizedType> GetCalibratedQuantizedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util.h

    #ifndef TENSORFLOW_COMPILER_JIT_XLA_CLUSTER_UTIL_H_
    #define TENSORFLOW_COMPILER_JIT_XLA_CLUSTER_UTIL_H_
    
    #include <string>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/xla_activity.pb.h"
    #include "xla/service/graphcycles/graphcycles.h"
    #include "xla/statusor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top