Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for XlaDeviceDummyOp (0.13 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)
Back to top