Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XlaRunOp (0.43 sec)

  1. tensorflow/compiler/jit/kernels/xla_ops.h

      // on any future calls to _XlaCompile.
      bool cannot_compile_cluster_ TF_GUARDED_BY(cannot_compile_cluster_mu_) =
          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 {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cpu_device.cc

    REGISTER_XLA_LAUNCH_KERNEL(DEVICE_XLA_CPU, XlaLocalLaunchOp, kAllXlaCpuTypes);
    REGISTER_XLA_COMPILE_KERNEL(DEVICE_XLA_CPU, XlaCompileOp, kAllXlaCpuTypes);
    REGISTER_XLA_RUN_KERNEL(DEVICE_XLA_CPU, XlaRunOp, kAllXlaCpuTypes);
    
    REGISTER_XLA_DEVICE_KERNELS(DEVICE_XLA_CPU, kAllXlaCpuTypes);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_gpu_device.cc

    REGISTER_XLA_LAUNCH_KERNEL(DEVICE_XLA_GPU, XlaLocalLaunchOp, kAllXlaGpuTypes);
    REGISTER_XLA_COMPILE_KERNEL(DEVICE_XLA_GPU, XlaCompileOp, kAllXlaGpuTypes);
    REGISTER_XLA_RUN_KERNEL(DEVICE_XLA_GPU, XlaRunOp, kAllXlaGpuTypes);
    
    REGISTER_XLA_DEVICE_KERNELS(DEVICE_XLA_GPU, kAllXlaGpuTypes);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top