Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 579 for abs8 (0.03 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

    #include <cstdint>
    #include <cstring>
    #include <memory>
    #include <optional>
    #include <utility>
    #include <vector>
    
    #include <gtest/gtest.h>
    #include "absl/log/check.h"
    #include "absl/random/random.h"
    #include "absl/status/status.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_TENSORFLOW_QUANTIZE_PREPROCESS_H_
    
    #include <cstdint>
    #include <optional>
    #include <string>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/strings/string_view.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/reader.cc

    #include "tensorflow/cc/saved_model/reader.h"
    
    #include <memory>
    #include <string>
    #include <unordered_set>
    #include <utility>
    
    #include "absl/memory/memory.h"
    #include "absl/status/statusor.h"
    #include "tensorflow/cc/saved_model/constants.h"
    #include "tensorflow/cc/saved_model/metrics.h"
    #include "tensorflow/cc/saved_model/util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        return absl::Substitute("$0 $1", VariableType(), attr_.name());
      }
      return absl::Substitute("$0 $1 = $2", VariableType(), attr_.name(),
                              default_value);
    }
    
    string AttrView::SetterMethod() const {
      if (!attr_.is_list()) {
        return absl::StrCat("SetAttr", toUpperCamel(attr_.full_type()));
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util.cc

        ++output_num;
      }
      return absl::OkStatus();
    }
    
    absl::StatusOr<std::vector<XlaCompiler::Argument>>
    XlaComputationLaunchContext::BuildXlaCompilerArguments(
        absl::Span<int const> must_be_constant_idxs,
        absl::Span<const Tensor* const> inputs,
        absl::Span<VariableInfo const> variable_args, Device* device) {
      if (!must_be_constant_idxs.empty() &&
          !absl::c_is_sorted(must_be_constant_idxs)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/kernels/xla_ops.cc

    #include <memory>
    #include <optional>
    #include <set>
    #include <string>
    #include <string_view>
    #include <tuple>
    #include <utility>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/device_compilation_profiler.h"
    #include "tensorflow/compiler/jit/device_compiler.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.h

    #include <array>
    #include <memory>
    #include <string>
    #include <unordered_set>
    #include <vector>
    
    #include "absl/base/nullability.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

    #include <memory>
    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/base/nullability.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      Renderer TFStatement(absl::string_view text, const Args &...args) {
        return TFStatement(absl::Substitute(text, args...));
      }
    
      // Indent and append a C++ single-line style comment (using '//').
      Renderer &CommentLine(const string &text = "");
      template <typename... Args>
      Renderer CommentLine(absl::string_view text, const Args &...args) {
        return CommentLine(absl::Substitute(text, args...));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/BUILD

            "//tensorflow/lite/kernels/internal:tensor_utils",
            "//tensorflow/lite/tools/optimize:quantization_utils",
            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/memory",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:ArithDialect",
            "@llvm-project//mlir:FuncDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top