Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 315 for extractID (0.45 sec)

  1. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      none_ = CreateNoneValue(&builder_, fused_func_op_.getLoc());
      // Extract input to cifg gates via slicing the weight tensor
      SetWeightForInputToCellGate();
      SetWeightForInputToInputGate();
      SetWeightForInputToForgetGate();
      SetWeightForInputToOutputGate();
    
      // Extract recurrent to cifg gates via slicing the weight tensor
      SetWeightForRecurrentToCellGate();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. cmd/bucket-listobjects-handlers.go

    	if metadata {
    		checkObjMeta = func(name string, action policy.Action) (s3Err APIErrorCode) {
    			return checkRequestAuthType(ctx, r, action, bucket, name)
    		}
    	}
    	urlValues := r.Form
    
    	// Extract all the listBucketVersions query params to their native values.
    	prefix, marker, delimiter, maxkeys, encodingType, versionIDMarker, errCode := getListBucketObjectVersionsArgs(urlValues)
    	if errCode != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.td

    // See the function doc in the header file.
    def GetNhwcReturnTypeFromNchw: NativeCodeCall<
      "GetNhwcReturnTypeFromNchw((*$0.begin()).getDefiningOp())">;
    
    // When given a DenseIntElementsAttr containing I64 elements, this extracts
    // one I32IntegerAttr from the given index.
    class GetI32At<int index>: NativeCodeCall<
      "$_builder.getI32IntegerAttr(static_cast<int32_t>(*($0.getValues<int64_t>().begin() + " # index #")))">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentModelBaseServices.java

    import org.gradle.model.internal.inspect.MethodModelRuleExtractor;
    import org.gradle.model.internal.manage.schema.ModelSchemaStore;
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspectExtractionStrategy;
    import org.gradle.platform.base.internal.VariantAspectExtractionStrategy;
    
    public class ComponentModelBaseServices extends AbstractGradleModuleServices {
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    constexpr llvm::StringRef kOutlinedFuncPrefix = "_tpu_v1_compat_outlined_func";
    
    #define GEN_PASS_DEF_TPUBRIDGEEXECUTORISLANDOUTLININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Extract the islands containing a TPU cluster computation into an outlined
    // function in a nested module. This will allow to run the usual bridge on this
    // nested module which exhibit a more friendly "V2-like" structure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	if !ok {
    		return errors.Errorf("%s is not a known certificate", name)
    	}
    
    	// reads the current certificate
    	cert, err := handler.readwriter.Read()
    	if err != nil {
    		return err
    	}
    
    	// extracts the certificate config
    	certConfig := certToConfig(cert)
    	for _, f := range handler.certConfigMutators {
    		if err := f(&certConfig); err != nil {
    			return err
    		}
    	}
    	cfg := &pkiutil.CertConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/slices/slices.go

    // by a single field. If you need to have multiple fields, see the ExampleSort.
    func SortBy[E any, A constraints.Ordered](x []E, extract func(a E) A) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	SortFunc(x, func(a, b E) int {
    		return cmp.Compare(extract(a), extract(b))
    	})
    	return x
    }
    
    // Sort sorts a slice of any ordered type in ascending order.
    // The slice is modified in place but returned.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

          reinterpret_cast<const char*>(output_builder.GetCurrentBufferPointer()),
          output_builder.GetSize());
      tflite::ModelT output_model;
      output_fbm->GetModel()->UnPackTo(&output_model);
    
      // Extract output metadata
      std::map<std::string, std::string> output_metadata;
      for (const auto& metadata : output_model.metadata) {
        const auto& data = output_model.buffers[metadata->buffer]->data;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h

    std::optional<bool> GetBoolFromCompositeAttr(
        const DictionaryAttr& composite_attrs, llvm::StringRef attr_name);
    
    // Given a DictionaryAttr, checks if it has a DenseIntElementsAttr attribute
    // with the name attr_name. If so, extracts its values and stores as a vector
    // of int32_t elements.
    // Note: This assumes the DenseIntElementsAttr has its values stored as int64_t.
    bool GetI32VectorFromDenseI64CompositeAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/TypeCompatibilityModelProjectionSupport.java

    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.concurrent.ThreadSafe;
    import java.util.Collections;
    
    import static org.gradle.model.internal.manage.schema.extract.PrimitiveTypes.isPrimitiveType;
    
    @ThreadSafe
    public abstract class TypeCompatibilityModelProjectionSupport<M> implements ModelProjection {
    
        private final ModelType<M> type;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top