Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for nack (0.53 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // PackOp
    //===----------------------------------------------------------------------===//
    
    // Remove redundant unpack pack op.
    // If a unpack op is followed by a pack op, we can remove the pack op, if the
    // unpack op is only consumed by the pack op, it will be removed as well.
    // An example illustration is:
    //                  Unpack [5, 8, 9], axis = 1
    //                /       \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // Use `PackOp` for scalar concatenation because `ConcatV2Op` doesn't
        // support scalar concatenation.
        if (is_scalar) {
          auto pack = CreateTfOp<PackOp>(rewriter, op, result_type, args,
                                         rewriter.getI64IntegerAttr(axis));
          return pack.getResult();
        }
    
        // New concatenation axis.
        auto axis_type = tensorflow::GetTypeFromTFTensorShape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	eventedPlegRelistPeriod     = time.Second * 300
    	eventedPlegRelistThreshold  = time.Minute * 10
    	eventedPlegMaxStreamRetries = 5
    
    	// backOffPeriod is the period to back off when pod syncing results in an
    	// error. It is also used as the base period for the exponential backoff
    	// container restarts and image pulls.
    	backOffPeriod = time.Second * 10
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/reflect/value.go

    				}
    				ret[i] = Value{tv, regArgs.Ptrs[steps[0].ireg], flag(tv.Kind())}
    				continue
    			}
    
    			// All that's left is values passed in registers that we need to
    			// create space for and copy values back into.
    			//
    			// TODO(mknyszek): We make a new allocation for each register-allocated
    			// value, but previously we could always point into the heap-allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	}
    
    	var count int64 // rough count of number of instructions
    	for p := s.Func().Text; p != nil; p = p.Link {
    		count++
    		p.Back = branchShort // use short branches first time through
    		if q := p.To.Target(); q != nil && (q.Back&branchShort != 0) {
    			p.Back |= branchBackwards
    			q.Back |= branchLoopHead
    		}
    	}
    	s.GrowCap(count * 5) // preallocate roughly 5 bytes per instruction
    
    	var ab AsmBuf
    	var n int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    OpFoldResult PackOp::fold(FoldAdaptor) {
      // Fold pack operation if it computes the input tensor shape:
      //
      //   %shape  = tf.Shape(%arg)                    // [? x ...]
      //   %dim0   = tf.StridedSlice(%shape, 0, 1, 1)  // get unknown dim0 value
      //   %pack   = tf.Pack(dim0, ...) { axis = 0 }   // [? x ...]
      //
      // Where `...` are some statically known dimensions. In this case %pack can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // repeated, and the changes are applied in the order given.
    //
    // The -print flag prints the final go.mod in its text format instead of
    // writing it back to go.mod.
    //
    // The -json flag prints the final go.mod file in JSON format instead of
    // writing it back to go.mod. The JSON output corresponds to these Go types:
    //
    //	type Module struct {
    //		Path    string
    //		Version string
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    				} else if errors.Is(r.err, imports.ErrNoGo) {
    					// ImportDir said there were files in the package, but the module
    					// loader said there weren't. Which one is right?
    					// Without this special-case hack, the TestScript/test_vet case fails
    					// on the vetfail/p1 package (added in CL 83955).
    					// Apparently, imports.ShouldBuild biases toward rejecting files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    	// while the generated function is executed. And those errors will be handled during the execution of the generated
    	// function with a back off policy.
    	if err == nil && attachableVolumePlugin != nil {
    		attachableVolumePluginName = attachableVolumePlugin.GetPluginName()
    	}
    
    	return volumetypes.GeneratedOperations{
    		OperationName:     "volume_attach",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top