Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for Advance (0.46 sec)

  1. src/cmd/internal/notsha256/sha256block_ppc64x.s

    	MOVD	$0x0d0, R_x0d0
    	MOVD	$0x0e0, R_x0e0
    	MOVD	$0x0f0, R_x0f0
    	MOVD	$0x100, R_x100
    	MOVD	$0x110, R_x110
    
    loop:
    	MOVD	TBL_STRT, TBL
    	LVX	(TBL)(R_x000), KI
    
    	LXVD2X	(INP)(R_x000), V8 // load v8 in advance
    
    	// Offload to VSR24-31 (aka FPR24-31)
    	XXLOR	V0, V0, VS24
    	XXLOR	V1, V1, VS25
    	XXLOR	V2, V2, VS26
    	XXLOR	V3, V3, VS27
    	XXLOR	V4, V4, VS28
    	XXLOR	V5, V5, VS29
    	XXLOR	V6, V6, VS30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    			// there's nothing else for us to read. Advance the generation
    			// we're reading from and try again.
    			trace.readerGen.Store(trace.gen.Load())
    			unlock(&trace.lock)
    
    			// Wake up anyone waiting for us to be done with this generation.
    			//
    			// Do this after reading gen to make sure we can't have the trace
    			// advance until we've read it.
    			if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    	out := fields[:0]
    	for advance, i := 0, 0; i < len(fields); i += advance {
    		// One iteration per name.
    		// Find the sequence of fields with the name of this first field.
    		fi := fields[i]
    		name := fi.name
    		for advance = 1; i+advance < len(fields); advance++ {
    			fj := fields[i+advance]
    			if fj.name != name {
    				break
    			}
    		}
    		if advance == 1 { // Only one field with this name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

          if (op->getDialect()->getNamespace() !=
              TF::TensorFlowDialect::getDialectNamespace()) {
            return WalkResult::advance();
          }
    
          if (!LegalizeSingleOp(*op).ok()) {
            return WalkResult::interrupt();
          }
    
          return WalkResult::advance();
        });
    
        if (walk_result.wasInterrupted()) {
          return tsl::errors::Internal("Could not legalize all ops");
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

      auto decompose_result = function.walk([&](ReduceDatasetOp reduce_dataset) {
        if (!reduce_dataset->hasAttrOfType<StringAttr>(TF::kCompileDeviceTypeAttr))
          return WalkResult::advance();
        OpBuilder builder(reduce_dataset);
        Location loc = reduce_dataset.getLoc();
    
        // Get reduce function signature for dataset iteration types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          if (llvm::isa<AssertOp>(op)) {
            return WalkResult::advance();
          }
          if (auto if_op = llvm::dyn_cast<IfOp>(op)) {
            if (IsPureFunction(if_op.then_function()) &&
                IsPureFunction(if_op.else_function())) {
              return WalkResult::advance();
            }
          }
          if (IsCallToPureFunction(op)) {
            return WalkResult::advance();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                        if (upper == res2.getUpperBound()) {
                            // advance res2
                            if (i2.hasNext()) {
                                res2 = i2.next();
                            } else {
                                done = true;
                            }
                        } else {
                            // advance res1
                            if (i1.hasNext()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/math/big/natconv.go

    				nbits -= shift
    			}
    
    			// convert any partial leading digit and advance to next word
    			if nbits == 0 {
    				// no partial digit remaining, just advance
    				w = x[k]
    				nbits = _W
    			} else {
    				// partial digit in current word w (== x[k-1]) and next word x[k]
    				w |= x[k] << nbits
    				i--
    				s[i] = digits[w&mask]
    
    				// advance
    				w = x[k] >> (shift - nbits)
    				nbits = _W - (shift - nbits)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  9. src/internal/trace/generation.go

    			return nil, nil, fmt.Errorf("invalid generation number %d", gen)
    		}
    		if g.gen == 0 {
    			// Initialize gen.
    			g.gen = gen
    		}
    		if gen == g.gen+1 { // TODO: advance this the same way the runtime does.
    			spill = &spilledBatch{gen: gen, batch: &b}
    			break
    		}
    		if gen != g.gen {
    			// N.B. Fail as fast as possible if we see this. At first it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

        if (!cluster_id) return WalkResult::advance();
    
        if (failed(Rewrite(module_name, op, devices.device_names(),
                           compilation_results[cluster_id], &builder,
                           tpu_compile_metadata_debug_)))
          return WalkResult::interrupt();
    
        to_be_erased.push_back(op);
        return WalkResult::advance();
      });
      if (result.wasInterrupted()) return signalPassFailure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top