Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getPids (0.19 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          is_scalar_rhs = true;
        } else if (constant_val_type.getRank() > 1) {
          return failure();
        }
    
        Value filter = fc_op.getFilter();
        Value bias = fc_op.getBias();
        ElementsAttr bias_value;
        const bool is_none_bias = mlir::isa<NoneType>(bias.getType());
        if (fc_op.getFusedActivationFunction() != "NONE") return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Bias tensor is optional.
      const bool has_bias = !(!getBias() || getBias().getType().isa<NoneType>());
    
      // Get the tensors.
      DenseElementsAttr input_tensor, weights_tensor, bias_tensor;
      if (!matchPattern(getInput(), m_Constant(&input_tensor)) ||
          !matchPattern(getFilter(), m_Constant(&weights_tensor)) ||
          (has_bias && !matchPattern(getBias(), m_Constant(&bias_tensor)))) {
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    		ProbeManager:                    kubelet.probeManager,
    		Recorder:                        fakeRecorder,
    		NodeRef:                         nodeRef,
    		GetPodsFunc:                     kubelet.podManager.GetPods,
    		KillPodFunc:                     killPodNow(kubelet.podWorkers, fakeRecorder),
    		SyncNodeStatusFunc:              func() {},
    		ShutdownGracePeriodRequested:    0,
    		ShutdownGracePeriodCriticalPods: 0,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

              "format");
      }
    
      if (!IsOfRankOrUnranked(op.getBias(), 1))
        return op.emitOpError("requires bias operand to have rank exactly one");
    
      RankedTensorType value_ty =
          mlir::dyn_cast<RankedTensorType>(op.getValue().getType());
      RankedTensorType bias_ty =
          mlir::dyn_cast<RankedTensorType>(op.getBias().getType());
      if (!bias_ty || !value_ty) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.repositories.FlatDirectoryArtifactRepository.getDirs()> does not have raw return type assignable to org.gradle.api.provider.Property in (FlatDirectoryArtifactRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ShapedTypeComponents inferred = std::get<1>(result);
        TensorType inferred_type;
        if (inferred.hasRank()) {
          inferred_type =
              RankedTensorType::get(inferred.getDims(), inferred.getElementType());
    
        } else {
          inferred_type = UnrankedTensorType::get(inferred.getElementType());
        }
        inferred_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top