Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 324 for Advance (0.18 sec)

  1. src/crypto/sha256/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: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

      int num_submodules = 0;
      absl::Status clustering_pipeline_status;
      parent_module.walk([&](ModuleOp submodule) {
        if (submodule == parent_module) return mlir::WalkResult::advance();
        num_submodules++;
        clustering_pipeline_status = RunTFXLABridge(
            submodule,
            [](OpPassManager &pm) {
              internal::AddReplicatedBridgeClusteringPipelinePasses(pm);
            },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/annotations-stress.go

    					trace.Logf(ctx, "log", "fanout region%d", i)
    					if i == 2 {
    						do(ctx, 0)
    						return
    					}
    				})
    			}(i)
    		}
    	})
    
    	// Sleep to let things happen, but also increase the chance that we
    	// advance a generation.
    	time.Sleep(10 * time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

            parent_func->getAttrOfType<BoolAttr>(mlir::TF::kSkipIslandOutlining);
        if (skip_island_outlining && skip_island_outlining.getValue()) {
          // Island was marked to be skipped.
          return WalkResult::advance();
        }
        for (Operation &op : island_op.GetBody().without_terminator()) {
          if (isa<TF::TPUReplicateMetadataOp>(&op)) {
            // Handle replicated TPU case.
            islands_to_outline.push_back(island_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      return op
          ->walk([&](Operation* walked_op) {
            if (op == walked_op) return WalkResult::advance();
            if (walked_op->hasAttr(kXlaOutsideCompilationAttr)) {
              return WalkResult::interrupt();
            }
            return WalkResult::advance();
          })
          .wasInterrupted();
    }
    
    // Returns whether `op` or any ancestors of `op` are outside compiled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // in the trace have unique IDs, since the P just stays associated
    // with an eternally dead thread, and it's stolen by some other
    // thread later. But if thread IDs are reused, then the tracer
    // gets confused when trying to advance events on the new thread.
    // The now-dead thread which exited on a GoDestroySyscall still has
    // its P associated and this transfers to the newly-live thread
    // in the parser's state because they share a thread ID.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        public Integer offset;
    
        @ValidateTypeFailure
        public Integer pn;
    
        @Size(max = 1000)
        public String sdh;
    
        @Size(max = 100)
        public String track_total_hits;
    
        // advance
    
        @Override
        public int getStartPosition() {
            if (start == null) {
                start = ComponentUtil.getFessConfig().getPagingSearchPageStartAsInteger();
            }
            return start;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
          return base_;
        }
        // Advance should not be called on beyond-of-range iterators
        // so no component iterators must be beyond end of range, either.
        virtual void Advance() {
          assert(!AtEnd());
          ++current$(i)_;
    
    $for k [[
          if (current$(i+2-k)_ == end$(i+2-k)_) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top