Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for mypair (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Broadcasting is the process of making arrays to have compatible shapes
    for arithmetic operations. Two shapes are compatible if for each
    dimension pair they are either equal or one of them is one.
    
    For example:
    
    >>> x = tf.constant([[1, 2, 3]])   # Shape (1, 3,)
    >>> y = tf.broadcast_to(x, [2, 3])
    >>> print(y)
    tf.Tensor(
        [[1 2 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        input_indices.resize(input_type.getRank(), cst);
    
        for (auto pair :
             llvm::zip(unpacked_indices.getOutput(), split_updates.getOutput())) {
          input_indices.front() = std::get<0>(pair);
          input = rewriter.create<mhlo::DynamicUpdateSliceOp>(
              op.getLoc(), op.getType(), input, std::get<1>(pair), input_indices);
        }
    
        rewriter.replaceOp(op, input);
        return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.Unsupported
    
    internal class UnsupportedFeatureImpl(
        override val unsupportedFeature: Pair<LanguageFeature, LanguageVersionSettings>,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.UnsupportedFeature
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

    // Note that this is identical to a configmap volume source without the default
    // mode.
    message ConfigMapProjection {
      optional LocalObjectReference localObjectReference = 1;
    
      // items if unspecified, each key-value pair in the Data field of the referenced
      // ConfigMap will be projected into the volume as a file whose name is the
      // key and content is the value. If specified, the listed keys will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Optimizations
    // Note that PPC "logical" immediates come in 0:15 and 16:31 unsigned immediate forms,
    // so ORconst, XORconst easily expand into a pair.
    
    // Include very-large constants in the const-const case.
    (AND (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c&d])
    (OR (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c|d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/runtime/map.go

    //        8.00        41.10         9.40         5.00         8.00
    //
    // %overflow   = percentage of buckets which have an overflow bucket
    // bytes/entry = overhead bytes used per key/elem pair
    // hitprobe    = # of entries to check when looking up a present key
    // missprobe   = # of entries to check when looking up an absent key
    //
    // Keep in mind this data is for maximally loaded tables, i.e. just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	Hostname string `protobuf:"bytes,21,opt,name=hostname,proto3" json:"hostname,omitempty"`
    	// Network represents the network this workload is on. This may be elided for the default network.
    	// A (network,address) pair makeup a unique key for a workload *at a point in time*.
    	Network string `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
    	// Protocol that should be used to connect to this workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. CREDITS

    *  quality and performance of the Covered Software is with You.        *
    *  Should any Covered Software prove defective in any respect, You     *
    *  (not any Contributor) assume the cost of any necessary servicing,   *
    *  repair, or correction. This disclaimer of warranty constitutes an   *
    *  essential part of this License. No use of any Covered Software is   *
    *  authorized under this License except under this disclaimer.         *
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // references. The linker's loadlib method uses this to determine if
    // there are unresolved references to functions in system libraries
    // (for example, libgcc.a), presumably due to CGO code. Return value
    // is a pair of lists of loader.Sym's. First list corresponds to the
    // corresponding to the undefined symbols themselves, the second list
    // is the symbol that is making a reference to the undef. The "limit"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apps__v1_openapi.json

            "properties": {
              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top