Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for op_kernel (0.26 sec)

  1. tensorflow/compiler/jit/xla_device.cc

        });
      }
    }
    
    void XlaDevice::Compute(OpKernel* op_kernel, OpKernelContext* context) {
      VLOG(2) << "XlaDevice::Compute " << op_kernel->name() << ":"
              << op_kernel->type_string();
      ShowXlaDeviceDeprecationWarning(jit_device_name_.type_string());
      op_kernel->Compute(context);
    }
    
    void XlaDevice::ComputeAsync(AsyncOpKernel* op_kernel, OpKernelContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

        return failure();
    
      params_.inputs = inputs;
      params_.op_kernel = op_kernel.get();
      llvm::SmallVector<tensorflow::AllocatorAttributes, 4> output_attr(
          op_->getNumResults());
      params_.output_attr_array = output_attr.data();
    
      tensorflow::OpKernelContext op_context(&params_, op_->getNumResults());
      device_->Compute(params_.op_kernel, &op_context);
    
      status = op_context.status();
      if (!status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. tensorflow/c/kernels.cc

    namespace tensorflow {
    namespace {
    
    // An OpKernel whose methods delegate to C function pointers.
    class COpKernel : public OpKernel {
     public:
      explicit COpKernel(OpKernelConstruction* ctx,
                         void* (*create_func)(TF_OpKernelConstruction*),
                         void (*compute_func)(void*, TF_OpKernelContext*),
                         void (*delete_func)(void*))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

        input_values.back().tensor = &tensor;
      }
    
      tensorflow::OpKernelContext::Params params;
      params.inputs = input_values;
      params.device = runner->device();
      params.op_kernel = runner->op_kernel();
    
      // Still use original device's resource_manager.
      params.resource_manager = runner->resource_manager();
      params.input_alloc_attrs = runner->input_alloc_attrs();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

          c->set_output(3, c->MakeShape({num_bins_attr->i()}));
    
          return absl::OkStatus();
        });
    
    class CustomAggregatorOp : public OpKernel {
     public:
      explicit CustomAggregatorOp(OpKernelConstruction* context)
          : OpKernel(context) {
        OP_REQUIRES_OK(context, context->GetAttr("id", &id_));
    
        int calibration_method_value;
        int num_bins;
        float min_percentile;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

    calibration method and save the result to the given file path as a binary
    proto file.)doc");
    
    class CalibrationStatisticsSaverOp : public OpKernel {
     public:
      explicit CalibrationStatisticsSaverOp(
          absl::Nonnull<OpKernelConstruction*> context)
          : OpKernel(context) {
        std::string output_file_path;
        OP_REQUIRES_OK(context,
                       context->GetAttr("output_file_path", &output_file_path));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

    #include "xla/client/xla_builder.h"
    #include "xla/client/xla_computation.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "tensorflow/core/common_runtime/device_mgr.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace mlir {
    namespace mhlo {
    
    class Tf2XlaRewriterTestPeer;
    
    class Tf2XlaRewriter {
     public:
      static mlir::LogicalResult RewriteOp(mlir::Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util.cc

    #include "tensorflow/core/common_runtime/gpu_device_context.h"
    #include "tensorflow/core/framework/allocator.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/resource_mgr.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/lib/core/errors.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/node_properties.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/resource_mgr.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tsl/platform/env.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

    #include "xla/client/xla_builder.h"
    #include "xla/client/xla_computation.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "xla/shape_util.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    namespace mhlo {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top