Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 216 for _kernel (0.11 sec)

  1. CONTRIBUTING.md

    ```
    
    TensorFlow kernels and TensorFlow's dependencies are still not built with
    debugging information with `--config=dbg`, as issues occur on Linux if
    there is too much debug info (see [this GitHub
    issue](https://github.com/tensorflow/tensorflow/issues/48919) for context). If
    you want to debug a kernel, you can compile specific files with `-g` using the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    [it acts as`pivot` for marking the loop termination condition](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/kernels/control_flow_ops.h#L115-L118).
    
    ### `tf_executor.Enter` Operation
    
    [`tf_executor.Enter`](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/kernels/control_flow_ops.h##77-L79):
    takes a single input and a`name` string attribute that identifies the execution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  3. src/runtime/os_linux.go

    		case _AT_RANDOM:
    			// The kernel provides a pointer to 16-bytes
    			// worth of random data.
    			startupRand = (*[16]byte)(unsafe.Pointer(val))[:]
    
    		case _AT_PAGESZ:
    			physPageSize = val
    
    		case _AT_SECURE:
    			secureMode = val == 1
    		}
    
    		archauxv(tag, val)
    		vdsoauxv(tag, val)
    	}
    	return i / 2
    }
    
    var sysTHPSizePath = []byte("/sys/kernel/mm/transparent_hugepage/hpage_pmd_size\x00")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util_test.cc

    constexpr char kUncompilableFunctionNodeTwoName[] = "n_d_uncompilable";
    
    // A dummy OpKernel for testing.
    class DummyCompilableOp : public XlaOpKernel {
     public:
      explicit DummyCompilableOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {}
      void Compile(XlaOpKernelContext* ctx) override {
        ctx->SetOutput(0, ctx->Input(0));
      }
    };
    
    // Register the DummyCompilableOp kernel for CPU.
    REGISTER_OP("InputFloatOp").Output("o: float");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_386.s

    #define CONTENTS_DATA 0x00
    #define CONTENTS_STACK 0x02
    #define CONTENTS_CODE 0x04
    #define READ_EXEC_ONLY 0x08
    #define LIMIT_IN_PAGES 0x10
    #define SEG_NOT_PRESENT 0x20
    #define USEABLE 0x40
    
    // `-1` means the kernel will pick a TLS entry on the first setldt call,
    // which happens during runtime init, and that we'll store back the saved
    // entry and reuse that on subsequent calls when creating new threads.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      refresh. Note: the default for this value is lower than the other
                      refresh intervals as a workaround for a Linux kernel bug that was
                      fixed in kernel version 4.11. If you are using v4.11 or greater
                      you may want to set this to, a higher value to reduce Felix CPU
                      usage. [Default: 10s]'
                    type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ByteStreams.java

       *       then sequentially accessing it could result in other processes dying. This is solvable
       *       via madvise(2), but that obviously doesn't exist in java.
       *   <li>Ordinary copy. Kernel copies bytes into a kernel buffer, from a kernel buffer into a
       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/partially_decluster_pass_test.cc

        .Output("something_else: int32");
    
    class FakeBinaryOp : public OpKernel {
     public:
      explicit FakeBinaryOp(OpKernelConstruction* context) : OpKernel(context) {}
    
      void Compute(OpKernelContext* ctx) override { CHECK(false); }
    };
    
    class FakeResourceUpdateOp : public OpKernel {
     public:
      explicit FakeResourceUpdateOp(OpKernelConstruction* context)
          : OpKernel(context) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.ProtectKernelDefaults, "protect-kernel-defaults", c.ProtectKernelDefaults, "Default kubelet behaviour for kernel tuning. If set, kubelet errors if any of kernel tunables is different than kubelet defaults.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    			mappingIds[m.ID] = m
    		} else {
    			mappings[m.ID] = m
    		}
    
    		// If this a main linux kernel mapping with a relocation symbol suffix
    		// ("[kernel.kallsyms]_text"), extract said suffix.
    		// It is fairly hacky to handle at this level, but the alternatives appear even worse.
    		const prefix = "[kernel.kallsyms]"
    		if strings.HasPrefix(m.File, prefix) {
    			m.KernelRelocationSymbol = m.File[len(prefix):]
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top