Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for _kernel (0.12 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

              return absl::OkStatus();
            });
    
        // Register the corresponding fake op kernel.
        const char* node_name = opdef.name().c_str();
        const char* op_name = opdef.name().c_str();
        const char* device_name = "CPU";
        static auto fake_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        };
    
        TF_KernelBuilder* builder =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. .bazelrc

    # Only include debug info for files under tensorflow/, excluding kernels, to
    # reduce the size of the debug info in the binary. This is because if the debug
    # sections in the ELF binary are too large, errors can occur. See
    # https://github.com/tensorflow/tensorflow/issues/48919.
    # Users can still include debug info for a specific kernel, e.g. with:
    #     --config=dbg --per_file_copt=+tensorflow/core/kernels/identity_op.*@-g
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. doc/next/7-ports.md

    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Go 1.23 is the last release that requires Linux kernel version 2.6.32 or later. Go 1.24 will require Linux kernel version 3.17 or later, with an exception that systems running 3.10 or later will continue to be supported if the kernel has been patched to support the getrandom system call.
    
    ### OpenBSD {#openbsd}
    
    <!-- go.dev/issue/55999, CL 518629, CL 518630 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/runlit.cfg.py

        config.mlir_tools_dir, config.llvm_tools_dir
    ]
    tool_names = [
        'dtensor-opt',
        'flatbuffer_to_string',
        'flatbuffer_translate',
        'hlo_to_kernel',
        'json_to_flatbuffer',
        'kernel-gen-opt',
        'mlir-hlo-opt',
        'mlir-opt',
        'mlir-tflite-runner',
        'mlir-translate',
        'odml-to-stablehlo-opt',
        'odml_to_stablehlo',
        'odml-converter',
        'stable-quant-opt',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/utils/BUILD

            "//tensorflow/core:framework",
            "//tensorflow/core:test_main",
            "//tensorflow/core/protobuf/tpu:compile_metadata_proto_cc",
            "//tensorflow/core/tpu/kernels/xla:host_compute_ops",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/strings:string_view",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/os/pidfd_linux.go

    // This consists of pidfd_open and pidfd_send_signal syscalls, and waitid
    // syscall with idtype of P_PIDFD.
    //
    // Reasons for non-working pidfd syscalls include an older kernel and an
    // execution environment in which the above system calls are restricted by
    // seccomp or a similar technology.
    func checkPidfd() error {
    	// Get a pidfd of the current process (opening of "/proc/self" won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. RELEASE.md

            mean, var = tf.nn.moments(self.kernel, axes=[0, 1, 2], keepdims=True)
            return self.convolution_op(inputs, (self.kernel - mean) / tf.sqrt(var +
            1e-10))` Alternatively, you can override `convolution_op`: `python class
            StandardizedConv2D(tf.keras.Layer): def convolution_op(self, inputs,
            kernel): mean, var = tf.nn.moments(kernel, axes=[0, 1, 2],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    #include "tensorflow/core/platform/profile_utils/cpu_utils.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    #include "tensorflow/core/tpu/tpu_compile.h"
    #include "tensorflow/core/util/debug_data_dumper.h"
    #include "tsl/lib/monitoring/sampler.h"
    #include "tsl/platform/errors.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. cmd/handler-api.go

    	if err != nil {
    		buf, err = os.ReadFile(cgroupV1MemLimitFile)
    	}
    	if err != nil {
    		return 0
    	}
    	limit, err = strconv.ParseUint(strings.TrimSpace(string(buf)), 10, 64)
    	if err != nil {
    		// The kernel can return valid but non integer values
    		// but still, no need to interpret more
    		return 0
    	}
    	if limit == cgroupMemNoLimit {
    		// No limit set, It's the highest positive signed 64-bit
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

            "//tensorflow/core/lib/monitoring:cell_reader",
            "//tensorflow/core/protobuf/tpu:compile_metadata_proto_cc",
            "//tensorflow/core/tpu/kernels:tpu_compile_op_support",
            "//tensorflow/core/tpu/kernels/xla:host_compute_ops",
            "@com_google_googletest//:gtest",
            "@local_tsl//tsl/lib/core:status_test_util",
            "@local_tsl//tsl/lib/monitoring:test_utils",
            "@local_tsl//tsl/platform:errors",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top