Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 945 for abs8 (0.04 sec)

  1. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util.cc

    #include "tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util.h"
    
    #include <memory>
    #include <utility>
    
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "tensorflow/compiler/jit/pjrt_tensor_buffer_util.h"
    #include "xla/pjrt/c/pjrt_c_api.h"
    #include "xla/pjrt/pjrt_c_api_client.h"
    #include "xla/pjrt/pjrt_client.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/debugging/BUILD

        hdrs = ["mlir_dump.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@com_google_absl//absl/log",
            "@com_google_absl//absl/memory",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:06:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

            return absl::FailedPreconditionError(absl::StrCat(
                "Tried to convert node id ", node_id,
                " of type Resource to tensor but the Resource wasn't initialized"));
          }
          const RestoredResourceRevivalState& resource = resource_iter->second;
          if (resource.resource_handle == nullptr) {
            return absl::FailedPreconditionError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

            "@com_google_absl//absl/algorithm:container",
            "@com_google_absl//absl/base:core_headers",
            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/log",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.h

    // Strips `prefix_to_strip` from `text_proto`, parses, and returns the parsed
    // proto.
    Status ParseTextProto(absl::string_view text_proto,
                          absl::string_view prefix_to_strip,
                          protobuf::Message* parsed_proto);
    inline Status ParseTextProto(absl::string_view /* text_proto */,
                                 absl::string_view /* prefix_to_strip */,
                                 protobuf::MessageLite* /* parsed_proto */) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 06 09:43:41 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/util.cc

        Tensor tensor;
        if (!tensor.FromProto(*tensor_proto)) {
          return absl::InvalidArgumentError(
              absl::StrCat("tensor parsing error: ", alias));
        }
    
        inputs.emplace_back(feed_name, tensor);
      }
    
      if (!request_inputs.empty() &&
          seen_request_inputs.size() != request_inputs.size()) {
        return absl::InvalidArgumentError(absl::StrCat(
            "Inputs contains invalid name. Used request inputs: ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_activity_logging_listener.cc

          return absl::OkStatus();
        }
    
        return absl::OkStatus();
      }
    
      Status Listen(
          const XlaJitCompilationActivity& jit_compilation_activity) override {
        if (!IsEnabled()) {
          VLOG(3) << "Logging XlaJitCompilationActivity disabled";
          return absl::OkStatus();
        }
    
        return absl::OkStatus();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/attributes.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    #include <algorithm>
    #include <cstdint>
    #include <iterator>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/common/view_util.cc

    #include "tensorflow/c/experimental/ops/gen/common/view_util.h"
    
    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    string Call(const string& object, const string& method,
                std::vector<string> arguments, const char* oper) {
      return absl::Substitute("$0$1$2($3)", object, oper, method,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top