Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 579 for abs8 (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/BUILD

            "//tensorflow/core:core_cpu_base",
            "@com_google_absl//absl/algorithm:container",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/strings:string_view",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/BUILD

            "//tensorflow/core/distributed_runtime/rpc/eager:grpc_eager_client",
            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/memory",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/time",
            "@local_xla//xla/tsl/c:tsl_status_internal",
            "@local_xla//xla/tsl/distributed_runtime/coordination:coordination_service_agent",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top