Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for op_kernel (0.24 sec)

  1. tensorflow/compiler/jit/xla_kernel_creator.cc

    #include "tensorflow/core/framework/node_def_builder.h"
    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/node_properties.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tsl/platform/errors.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 22:24:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_compile_util.cc

    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/pjrt/pjrt_client.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/resource_mgr.h"
    #include "tensorflow/core/lib/core/refcount.h"
    #include "tensorflow/core/platform/status.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/tensorflow/debugging/dump_tensor_op.cc

        .Attr("T: type")
        .Attr("enabled: bool")
        .Attr("func_name: string")
        .Attr("node_name: string")
        .SetIsStateful();
    
    class DumpTensorOp : public OpKernel {
     public:
      explicit DumpTensorOp(OpKernelConstruction* ctx) : OpKernel(ctx) {
        string log_dir_path;
        string file_name;
        string func_name;
        string node_name;
        OP_REQUIRES_OK(ctx, ctx->GetAttr("log_dir_path", &log_dir_path));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 03:12:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_compile_util.h

    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/pjrt/pjrt_client.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/resource_mgr.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // Compiles a `function` to PjRtLoadedExecutable `executable` with `ctx`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_ops_on_regular_devices.cc

    // Register XlaXXX operations on regular CPU/GPU devices using
    // `XlaCompileOnDemandOp`.
    #include "tensorflow/compiler/jit/xla_compile_on_demand_op.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    #define REGISTER_XLA_OPS_ON_DEVICE(DEVICE)                                     \
      REGISTER_KERNEL_BUILDER(Name("XlaConv")                                      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 19:55:14 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_compile_util.cc

    #include "tensorflow/compiler/jit/xla_compile_util.h"
    
    #include <memory>
    #include <string>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/resource_mgr.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/node_builder.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/kernels/xla_ops.h

          false;
    
      mutex cannot_compile_cluster_mu_;
    };
    
    class XlaRunOp : public OpKernel {
     public:
      explicit XlaRunOp(OpKernelConstruction* ctx);
    
      void Compute(OpKernelContext* ctx) override;
    
     private:
      const XlaPlatformInfo platform_info_;
    };
    
    class XlaMergeOp : public OpKernel {
     public:
      explicit XlaMergeOp(OpKernelConstruction* ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top