Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rtmap (0.05 sec)

  1. 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)
  2. cmd/site-replication.go

    		if existingRl, ok := rMap[id]; ok {
    			clonedRl := rl.CloneNonTransition()
    			clonedRl.Transition = existingRl.Transition
    			clonedRl.NoncurrentVersionTransition = existingRl.NoncurrentVersionTransition
    			rMap[id] = clonedRl
    		} else {
    			rMap[id] = rl
    		}
    	}
    
    	var rules []lifecycle.Rule
    	for _, rule := range rMap {
    		rules = append(rules, rule)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          return errors::FailedPrecondition(
              absl::StrCat("Graph does not contain node: ", name));
        }
        nodes->insert(it->second);
        return absl::OkStatus();
      };
    
      // Remap feeds and fetches to newly created Placeholder nodes.
      for (const auto& input : specs_.inputs) {
        TensorId tensor = ParseTensorName(input.first);
        auto remapped_it = remapped_feeds_.find(tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top