Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for rtmap (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// if *arg0 == arg1 {
    		//   *arg0 = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// LDAXR	(Rarg0), Rtmp
    		// CMP		Rarg1, Rtmp
    		// BNE		3(PC)
    		// STLXR	Rarg2, (Rarg0), Rtmp
    		// CBNZ		Rtmp, -4(PC)
    		// CSET		EQ, Rout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_64bit.go

    		return summaryRangeToSumAddrRange(level, sumIdxBase, sumIdxLimit)
    	}
    
    	// Find the first inUse index which is strictly greater than base.
    	//
    	// Because this function will never be asked remap the same memory
    	// twice, this index is effectively the index at which we would insert
    	// this new growth, and base will never overlap/be contained within
    	// any existing range.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	case 75:
    		// If offset L fits in a 24 bit unsigned immediate:
    		//	add $lo, R, Rtmp
    		//	add $hi, Rtmp, Rtmp
    		//	ldr (Rtmp), R
    		// Otherwise, use constant pool:
    		//	mov $L, Rtmp (from constant pool)
    		//	add Rtmp, R, Rtmp
    		//	ldp (Rtmp), (R1, R2)
    		rf, rt1, rt2 := p.From.Reg, p.To.Reg, int16(p.To.Offset)
    		if rf == REGTMP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

          }
        }
        replicas.push_back(replica);
      }
    
      return success();
    }
    
    // Creates islands per replica from `tf_device.replicate` region and remap
    // replicate results with new island outputs. A single island is created to
    // forward control dependencies if there is a control dependency output from the
    // replicate island. Devices are remapped from aliased devices to explicit
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// atomic 8/32 and/or.
    		// *arg0 &= (|=) arg1. arg2=mem. returns memory. auxint must be zero.
    		// LBAR/LWAT	(Rarg0), Rtmp
    		// AND/OR	Rarg1, Rtmp
    		// STBCCC/STWCCC Rtmp, (Rarg0), Rtmp
    		// BNE		Rtmp, -3(PC)
    		{name: "LoweredAtomicAnd8", argLength: 3, reg: gpstore, asm: "AND", faultOnNilArg0: true, hasSideEffects: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typebits/typebits.go

    		// are not considered pointers by garbage collection and stack copying.
    		return
    	}
    
    	switch t.Kind() {
    	case types.TPTR, types.TUNSAFEPTR, types.TFUNC, types.TCHAN, types.TMAP:
    		if off&int64(types.PtrSize-1) != 0 {
    			base.Fatalf("typebits.Set: invalid alignment, %v", t)
    		}
    		bv.Set(int32(off / int64(types.PtrSize))) // pointer
    
    	case types.TSTRING:
    		// struct { byte *str; intgo len; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/identity.go

    			}
    		}
    		return true
    
    	case TARRAY:
    		if t1.NumElem() != t2.NumElem() {
    			return false
    		}
    
    	case TCHAN:
    		if t1.ChanDir() != t2.ChanDir() {
    			return false
    		}
    
    	case TMAP:
    		if !identical(t1.Key(), t2.Key(), flags, assumedEqual) {
    			return false
    		}
    	}
    
    	return identical(t1.Elem(), t2.Elem(), flags, assumedEqual)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// if *arg0 == arg1 {
    		//   *arg0 = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// MOV  $0, Rout
    		// LR	(Rarg0), Rtmp
    		// BNE	Rtmp, Rarg1, 3(PC)
    		// SC	Rarg2, (Rarg0), Rtmp
    		// BNE	Rtmp, ZERO, -3(PC)
    		// MOV  $1, Rout
    		{name: "LoweredAtomicCas32", argLength: 4, reg: gpcas, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

          replacer.create<mlir::func::ReturnOp>(yield_op.getLoc(),
                                                yield_op.getOperands());
          yield_op.erase();
        }
    
        // Remap the captured operands in the (former) island block with newly
        // created entry block arguments in the function body.
        {
          Block &entry_block = outlined_func.getBody().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/strings/replace.go

    	// remapping that byte through genericReplacer.mapping to create a dense
    	// index. In the example above, the keys only use 'a', 'b', 'c', 'x' and
    	// 'y', which remap to 0, 1, 2, 3 and 4. All other bytes remap to 5, and
    	// genericReplacer.tableSize will be 5. Node n0's table will be
    	// []*trieNode{ 0:n1, 1:n4, 3:n6 }, where the 0, 1 and 3 are the remapped
    	// 'a', 'b' and 'x'.
    	table []*trieNode
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top