Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for participant (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // BatchMatMul should have exactly the same batch dimensions and
      // BatchMatMulV2 should have broadcastable batch dimensions.
      //
      // The last two dimensions are non-batch dimensions that don't need to
      // participate in batch dimension compatibility check.
      if (std::is_same<OpT, BatchMatMulOp>()) {
        for (const auto& dim_pairs : llvm::zip(x_batches, y_batches)) {
          int64_t x_dim = std::get<0>(dim_pairs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		if newmHandoff.waiting {
    			newmHandoff.waiting = false
    			notewakeup(&newmHandoff.wake)
    		}
    		unlock(&newmHandoff.lock)
    		// The M has not started yet, but the template thread does not
    		// participate in STW, so it will always process queued Ms and
    		// it is safe to releasem.
    		releasem(getg().m)
    		return
    	}
    	newm1(mp)
    	releasem(getg().m)
    }
    
    func newm1(mp *m) {
    	if iscgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top