Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 562 for _kernel (0.18 sec)

  1. tensorflow/compiler/jit/xla_platform_info.h

      // XlaLaunch/_XlaCompile/_XlaRun op is placed and thus does not die before the
      // XlaLaunch/_XlaCompile/_XlaRun OpKernel.
      const XlaDevice::Metadata* xla_device_metadata_;
    
      // pjrt_device_metadata_ lives in tensorflow::PjRtBaseDevice in which the
      // XlaLaunch/XlaCompileOnDemand op is placed and thus does not die before the
      // op kernel.
      const PjRtBaseDevice::Metadata* pjrt_device_metadata_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/runtime/defs_linux.go

    /*
    Input to cgo -cdefs
    
    GOARCH=amd64 go tool cgo -cdefs defs_linux.go defs1_linux.go >defs_linux_amd64.h
    */
    
    package runtime
    
    /*
    // Linux glibc and Linux kernel define different and conflicting
    // definitions for struct sigaction, struct timespec, etc.
    // We want the kernel ones, which are in the asm/* headers.
    // But then we'd get conflicts when we include the system
    // headers for things like ucontext_t, so that happens in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/c/kernels/histogram_summary_op.cc

      return kernel;
    }
    
    void HistogramSummaryOp_Delete(void* kernel) {
      delete static_cast<HistogramSummaryOp*>(kernel);
    }
    
    template <typename T>
    void HistogramSummaryOp_Compute(void* kernel, TF_OpKernelContext* ctx) {
      HistogramSummaryOp* k = static_cast<HistogramSummaryOp*>(kernel);
      TF_Tensor* tags;
      TF_Tensor* values;
      Safe_TF_StatusPtr status(TF_NewStatus());
      TF_GetInput(ctx, 0, &tags, status.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. cmd/server-rlimit.go

    import (
    	"runtime"
    	"runtime/debug"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/madmin-go/v3/kernel"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/sys"
    )
    
    func oldLinux() bool {
    	currentKernel, err := kernel.CurrentVersion()
    	if err != nil {
    		// Could not probe the kernel version
    		return false
    	}
    
    	if currentKernel == 0 {
    		// We could not get any valid value return false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_arm64_hwcap.go

    	// check the AUXV for the CPUID bit. The getMIDR function executes an
    	// instruction which would normally be an illegal instruction, but it's
    	// trapped by the kernel, the value sanitized and then returned.
    	// Without the CPUID bit the kernel will not trap the instruction and the
    	// process will be terminated with SIGILL.
    	if ARM64.HasCPUID {
    		midr := getMIDR()
    		part_num := uint16((midr >> 4) & 0xfff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_kernel_creator.h

      Status CreateKernel(FunctionLibraryRuntime* flr,
                          const std::shared_ptr<const NodeProperties>& props,
                          std::unique_ptr<OpKernel>* kernel) const override;
    };
    
    bool RegisterLaunchOpCreator();
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 26 19:43:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/syscall/route_bsd.go

    	// - The length field of the kernel form indicates the prefix
    	//   length in bytes, not in bits
    	//
    	// - In the kernel form, zero value of the length field
    	//   doesn't mean 0.0.0.0/0 or ::/0
    	//
    	// - The kernel form appends leading bytes to the prefix field
    	//   to make the <length, prefix> tuple to be conformed with
    	//   the routing message boundary
    	l := int(rsaAlignOf(int(b[0])))
    	if len(b) < l {
    		return nil, EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/net/tcpsockopt_windows.go

    	if !windows.SupportTCPKeepAliveIdle() {
    		return setKeepAliveIdleAndInterval(fd, d, -1)
    	}
    
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, windows.TCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.cc

              /*may_alias_resource_update=*/false, &kernel, &pjrt_client,
              &pjrt_executable);
        } else {
          status = CompileToLocalExecutable(
              ctx, function_, has_ref_vars_, platform_info_, args, compile_mode,
              /*may_alias_resource_update=*/false, &client, &kernel, &executable);
        }
        if (compile_mode != DeviceCompileMode::kLazy ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_accept.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // We require Linux kernel version 2.6.32. The accept4 system call was
    // added in version 2.6.28, so in general we can use accept4.
    // Unfortunately, for ARM only, accept4 was added in version 2.6.36.
    // Handle that case here, by using a copy of the Accept function that
    // we used in Go 1.17.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 961 bytes
    - Viewed (0)
Back to top