Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XlaDeviceDummyOp (0.23 sec)

  1. tensorflow/compiler/jit/xla_device_ops.cc

    #include "tensorflow/compiler/jit/xla_device_ops.h"
    
    #include <memory>
    
    #include "tensorflow/compiler/jit/xla_tensor.h"
    
    namespace tensorflow {
    
    XlaDeviceDummyOp::XlaDeviceDummyOp(OpKernelConstruction* ctx) : OpKernel(ctx) {}
    
    void XlaDeviceDummyOp::Compute(OpKernelContext* ctx) {
      LOG(FATAL) << "Attempted to execute Op " << name() << " type "
                 << type_string() << " on an XLA device. This should never happen.";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_ops.h

    // rewritten to a XlaLaunch op. If it is called, it means the placer placed an
    // operator on an XLA device but the compiler did not compile it.
    class XlaDeviceDummyOp : public OpKernel {
     public:
      explicit XlaDeviceDummyOp(OpKernelConstruction* ctx);
      void Compute(OpKernelContext* ctx) override;
    };
    
    class XlaAssignVariableOp : public OpKernel {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
Back to top