Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 820 for more (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    #ifndef TENSORFLOW_COMPILER_MLIR_TF2XLA_API_V1_CLUSTER_TF_H_
    #define TENSORFLOW_COMPILER_MLIR_TF2XLA_API_V1_CLUSTER_TF_H_
    
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v1 {
    
    // Run all the passes involved in transforming the graph before execution so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental.cc

    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/types.h"
    
    using tensorflow::string;
    
    namespace tensorflow {
    namespace tracing {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils_test.cc

    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/protobuf.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 12 04:22:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    the TF2 Embedding API. This is designed for applications that have an
    embedding lookup on the SparseCore, followed by one or more dense layers on
    TensorCores, optionally followed by a backward pass (training update) with
    more ops on the SparseCore. Ops are broken up into:
      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/framework/tensor_shape.pb.h"
    
    namespace mlir {
    namespace TFL {
    
    bool IsQuantized(const tflite::TensorT& tensor);
    
    absl::StatusOr<mlir::quant::QuantizedType> GetQuantizedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/util.cc

    #include "tensorflow/cc/saved_model/util.h"
    
    #include <set>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    namespace saved_model {
    
    std::string GetWriteVersion(const SavedModel& saved_model) {
      if (saved_model.meta_graphs_size() == 1 &&
    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/mlir/tensorflow/utils/device_util.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/core/common_runtime/device.h"
    #include "tensorflow/core/common_runtime/device_set.h"
    #include "tensorflow/core/util/device_name_utils.h"
    
    namespace tensorflow {
    
    constexpr char kDevicesAttr[] = "tf.devices";
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

      if (!session_initializers.empty()) {
        if (!llvm::hasSingleElement(session_initializers)) {
          return (*++session_initializers.begin()).emitError()
                 << "there must be no more than one session_initializer op";
        }
    
        if (failed(
                VerifySessionInitOp(*session_initializers.begin(), symbol_table))) {
          return failure();
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

          TypeID::get<TF::XlaVariadicSortOp>(),
    
          // Ops that have no XlaOpKernel.
          TypeID::get<TF::RiscAddOp>(),
          TypeID::get<TF::RiscDotOp>(),
    
          // Const op has a simple legalization and it is much more efficient to
          // lower
          // within MLIR.
          TypeID::get<TF::ConstOp>(),
    
          // AssertOp with string types are not supported by the fallback.
          TypeID::get<TF::AssertOp>(),
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    #ifndef TENSORFLOW_COMPILER_JIT_RESOURCE_OPERATION_SAFETY_ANALYSIS_H_
    #define TENSORFLOW_COMPILER_JIT_RESOURCE_OPERATION_SAFETY_ANALYSIS_H_
    
    #include "xla/service/graphcycles/graphcycles.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // An XLA cluster hoists all resource reads to be beginning of the cluster
    // execution and all the resource writes to the end.  This means it cannot
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top