Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KernelDef (0.19 sec)

  1. tensorflow/c/kernels.cc

        // If user doesn't provide a serialized KernelDef, use the kernel builder
        // to build a new one.
        tensorflow::kernel_factory::OpKernelRegistrar(
            builder->cc_builder->Build(), name,
            std::make_unique<tensorflow::KernelBuilderFactory>(builder));
    
        TF_SetStatus(status, TF_OK, "");
        return;
      }
    
      tensorflow::KernelDef* kernel_def = new tensorflow::KernelDef();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

      XlaOpRegistry::RegisterCompilationKernels();
      XlaDeviceOpRegistrations* registrations = new XlaDeviceOpRegistrations;
      for (const KernelDef* jit_def : XlaOpRegistry::DeviceKernels(
               jit_device,
               /*include_compilation_only_kernels=*/false)) {
        KernelDef* def = new KernelDef(*jit_def);
        const std::unordered_set<std::string>* constant_inputs =
            XlaOpRegistry::CompileTimeConstantInputArgNames(def->op());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

    // in sync.
    TEST_F(LegalizationOpConfigTest, MlirLoweringWithoutXlaKernel) {
      tensorflow::XlaOpRegistry::RegisterCompilationKernels();
      std::vector<const tensorflow::KernelDef*> kernel_defs =
          tensorflow::XlaOpRegistry::DeviceKernels(
              tensorflow::DEVICE_CPU_XLA_JIT,
              /*include_compilation_only_kernels=*/true);
    
      std::set<std::string> xla_op_kernels;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top