Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 650 for _kernel (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      mlir::LogicalResult PrepareParams();
    
      // Given the required_consts, it will fill the 3 output vectors with
      // their respective data.
      // Expressions: Output XLA expressions as required by the compiled kernel.
      // Tensors: Vector of tensors that back the TensorValue inputs
      // Inputs: Vector of inputs that are backed by tensors.
      mlir::LogicalResult PrepareKernelInputs(
          const llvm::SmallDenseSet<int>& required_consts,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

    calibration method and save the result to the given file path as a binary
    proto file.)doc");
    
    class CalibrationStatisticsSaverOp : public OpKernel {
     public:
      explicit CalibrationStatisticsSaverOp(
          absl::Nonnull<OpKernelConstruction*> context)
          : OpKernel(context) {
        std::string output_file_path;
        OP_REQUIRES_OK(context,
                       context->GetAttr("output_file_path", &output_file_path));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

    // e.g. `Add`, that expects its inputs in device memory. Here is how it
    // works now.
    // First, what do we mean by "op expects an input in XYZ memory"?
    // There are two types of "ops" here: the tf2xla kernel and the HLO
    // computation it builds. The tf2xla kernel needs to retrieve the actual
    // numeric value of the compile-time constant tensors, so it really expects
    // them to be on in host memory. However, for other inputs, it refers to them
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

    }
    
    def BatchFunctionOp : TensorflowMlrt_Op<"batch_function", [Pure]> {
      let summary = "Fallback ExecuteOp specialized for tf.BatchFunction.";
    
      let description = [{
        This kernel executes a variant tf.BatchFunction kernel that supports having
        the `f` attribute as a bytecode function.
    
        Example:
          %res = tf_mlrt.batch_function(%input, %captured_input)  {
              device = "/device:CPU:0",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/kubelet/sysctl/safe_sysctls.go

    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/klog/v2"
    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    )
    
    type sysctl struct {
    	// the name of sysctl
    	name string
    	// the minimum kernel version where the sysctl is available
    	kernel string
    }
    
    var safeSysctls = []sysctl{
    	{
    		name: "kernel.shm_rmid_forced",
    	}, {
    		name: "net.ipv4.ip_local_port_range",
    	}, {
    		name: "net.ipv4.tcp_syncookies",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_gpu_device.cc

          continue;
        }
    
        devices->push_back(std::move(device));
      }
      return absl::OkStatus();
    }
    
    REGISTER_LOCAL_DEVICE_FACTORY(DEVICE_XLA_GPU, XlaGpuDeviceFactory);
    
    // Kernel registrations
    
    constexpr std::array<DataType, 20> kAllXlaGpuTypes = {
        {DT_UINT8,    DT_QUINT8,      DT_UINT16,        DT_INT8,       DT_QINT8,
         DT_INT16,    DT_INT32,       DT_QINT32,        DT_INT64,      DT_HALF,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    #include "tensorflow/core/framework/node_def_builder.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/kernels/ops_testutil.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/test.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/status.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/internal/poll/copy_file_range_linux.go

    			return 0, false, nil
    		case nil:
    			if n == 0 {
    				// If we did not read any bytes at all,
    				// then this file may be in a file system
    				// where copy_file_range silently fails.
    				// https://lore.kernel.org/linux-fsdevel/******@****.***/T/#m05753578c7f7882f6e9ffe01f981bc223edef2b0
    				if written == 0 {
    					return 0, false, nil
    				}
    				// Otherwise src is at EOF, which means
    				// we are done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    #include "absl/log/check.h"
    #include "unsupported/Eigen/CXX11/Tensor"  // from @eigen_archive
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tensorflow/core/runtime_fallback/kernel/kernel_fallback_op_handler.h"
    #include "tensorflow/core/runtime_fallback/util/fallback_test_util.h"
    #include "tensorflow/core/tfrt/utils/fallback_tensor.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. pkg/util/kernel/constants.go

    limitations under the License.
    */
    
    package kernel
    
    // IPLocalReservedPortsNamespacedKernelVersion is the kernel version in which net.ipv4.ip_local_reserved_ports was namespaced(netns).
    // (ref: https://github.com/torvalds/linux/commit/122ff243f5f104194750ecbc76d5946dd1eec934)
    const IPLocalReservedPortsNamespacedKernelVersion = "3.16"
    
    // IPVSConnReuseModeMinSupportedKernelVersion is the minium kernel version supporting net.ipv4.vs.conn_reuse_mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top