Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for _kernel (0.17 sec)

  1. tensorflow/c/eager/c_api_test.cc

        .SetIsDistributedCommunication()
        .Doc(R"doc(Test communication op throwing Unavailable error.)doc");
    
    // Kernel that throws an Unavailable error.
    class TestUnavailableErrorOp : public tensorflow::OpKernel {
     public:
      explicit TestUnavailableErrorOp(tensorflow::OpKernelConstruction* ctx)
          : tensorflow::OpKernel(ctx) {}
      void Compute(tensorflow::OpKernelContext* ctx) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				SystemReservedCgroup:        "system-reserved-cgroup",
    				KubeReservedCgroup:          "kube-reserved-cgroup",
    				EnforceNodeAllocatable:      []string{"system-reserved"},
    				AllowedUnsafeSysctls:        []string{"kernel.msg*"},
    				VolumePluginDir:             "volume-plugin-dir",
    				ProviderID:                  "provider-id",
    				KernelMemcgNotification:     true,
    				Logging: logsapi.LoggingConfiguration{
    					Format:         "json",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // Kernel definition information.
    
    // Returns a serialized KernelList protocol buffer containing KernelDefs for all
    // registered kernels.
    TF_CAPI_EXPORT extern TF_Buffer* TF_GetAllRegisteredKernels(TF_Status* status);
    
    // Returns a serialized KernelList protocol buffer containing KernelDefs for all
    // kernels registered for the operation named `name`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    // The correct fix is to use the ConfigProto to pass in some sort of flag into
    // the PartitionedCall kernel that tells it to not rerun auto-clustering on the
    // cluster.
    const char* kXlaAlreadyClustered = "_XlaAlreadyClustered";
    
    class MarkForCompilationPassImpl {
     public:
      struct DebugOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    				),
    			})
    		}
    	}
    
    	// Figure out which chains are now stale. Unfortunately, we can't delete them
    	// right away, because with kernels before 6.2, if there is a map element pointing
    	// to a chain, and you delete that map element, the kernel doesn't notice until a
    	// short amount of time later that the chain is now unreferenced. So we flush them
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/BUILD

        ],
        deps = [
            ":tensorflow_lite",
            ":tensorflow_lite_passes_inc_gen",
            "//tensorflow/compiler/mlir/quantization/common/quantization_lib:quantization_config",
            "//tensorflow/lite/kernels/internal/utils:sparsity_format_converter",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/memory",
            "@eigen_archive//:eigen3",
            "@llvm-project//mlir:FuncDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    #### Docker runtime Known Issues
    
    - Kernel crash with Aufs storage driver on Debian Jessie ([#27885](https://github.com/kubernetes/kubernetes/issues/27885))
      - Consider running the *new* [kubernetes node problem detector](https://github.com/kubernetes/node-problem-detector) to identify this (and other) kernel issues automatically.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	}
    
    	// Linux [5.9,5.16) has a kernel bug that can break CPU timers on newly
    	// created threads, breaking our CPU accounting.
    	major, minor := unix.KernelVersion()
    	t.Logf("Running on Linux %d.%d", major, minor)
    	defer func() {
    		if t.Failed() {
    			t.Logf("Failure of this test may indicate that your system suffers from a known Linux kernel bug fixed on newer kernels. See https://golang.org/issue/49065.")
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	largeClusterMode bool
    
    	// localhostNodePorts indicates whether we allow NodePort services to be accessed
    	// via localhost.
    	localhostNodePorts bool
    
    	// conntrackTCPLiberal indicates whether the system sets the kernel nf_conntrack_tcp_be_liberal
    	conntrackTCPLiberal bool
    
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    }
    
    // TODO(lyandy): Investigate supported dtypes (`minval`, `maxval`, `output`) for
    // `tf.StatefulUniformInt`. tf2xla kernels support i32, i64, ui32, and ui64
    // while TensorFlow CPU/GPU kernels only support i32 and i64.
    def TF_StatefulUniformIntOp : TF_Op<"StatefulUniformInt", []> {
      let summary = "Outputs random integers from a uniform distribution.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top