Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Infoln (0.17 sec)

  1. cmd/kubeadm/app/cmd/phases/join/preflight.go

    	// Start with general checks
    	klog.V(1).Infoln("[preflight] Running general checks")
    	if err := preflight.RunJoinNodeChecks(utilsexec.New(), j.Cfg(), j.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	initCfg, err := j.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	// Continue with more specific checks based on the init configuration
    	klog.V(1).Infoln("[preflight] Running configuration dependant checks")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("cleanup-node phase invoked with an invalid data struct")
    	}
    	certsDir := r.CertificatesDir()
    
    	// Try to stop the kubelet service
    	klog.V(1).Infoln("[reset] Getting init system")
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("download-certs phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil || len(data.CertificateKey()) == 0 {
    		klog.V(1).Infoln("[download-certs] Skipping certs download")
    		return nil
    	}
    
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfold_splat_constant_pass.cc

    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    #define DEBUG_TYPE "unfold-splat-constant-pass"
    
    #define GEN_PASS_DEF_UNFOLDSPLATCONSTANTPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    // Undo the MHLO::BroadcastInDimOp folding pattern on splat tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

      let summary = "Legalize StableHLO custom call ops where the call target is 'stablehlo.composite' to composite ops.";
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    
    def UnfoldSplatConstantPass : Pass<"unfold-splat-constant-pass", "ModuleOp"> {
      let summary = "Replaces a splat constant tensor with a BroadcastInDim op.";
      let constructor = "mlir::odml::CreateUnfoldSplatConstantPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      // By default we freeze all variables and disallow mutable variables. When
      // 'enable_tflite_variables' is true then we allow mutable variable only.
      bool disable_variable_freezing = false;
      // Whether to unfold large splat constant tensors and replace them with
      // fill operation.
      bool unfold_large_splat_constant = false;
      // Whether to run the `GuaranteeAllFuncsOneUsePass` to ensure each function
      // has a single use.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top