Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XlaLocalLaunchBase (0.22 sec)

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

    class XlaLocalLaunchBase : public AsyncOpKernel {
     public:
      XlaLocalLaunchBase(OpKernelConstruction* ctx,
                         const std::vector<int>& constants,
                         const std::vector<int>& resources,
                         const NameAttrList& function, bool has_ref_vars);
      XlaLocalLaunchBase(const XlaLocalLaunchBase&) = delete;
      XlaLocalLaunchBase& operator=(const XlaLocalLaunchBase&) = delete;
    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/kernels/xla_ops.cc

            ->Schedule(execution_fn);
      } else {
        // Otherwise, just run normally: we merely "pretend" to be asynchronous.
        execution_fn();
      }
    }
    
    }  // namespace
    
    XlaLocalLaunchBase::XlaLocalLaunchBase(OpKernelConstruction* ctx,
                                           const std::vector<int>& constants,
                                           const std::vector<int>& resources,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_kernel_creator.cc

                                        input_memory_types, output_memory_types,
                                        flr->graph_def_version(), &s);
    
      *kernel = std::make_unique<XlaLocalLaunchBase>(
          &construction, constant_arg_indices, resource_arg_indices, function,
          /*has_ref_vars=*/false);
      return s;
    }
    
    Status XlaKernelCreator::CreateKernel(
        FunctionLibraryRuntime* flr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 22:24:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top