Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for rtmap (0.04 sec)

  1. src/cmd/compile/internal/types/size.go

    	t.align = 0  // 0 means use t.Width, below
    	t.alg = AMEM // default
    	// default t.ptrBytes is 0.
    	if t.Noalg() {
    		t.setAlg(ANOALG)
    	}
    
    	et := t.Kind()
    	switch et {
    	case TFUNC, TCHAN, TMAP, TSTRING:
    		break
    
    	// SimType == 0 during bootstrap
    	default:
    		if SimType[t.Kind()] != 0 {
    			et = SimType[t.Kind()]
    		}
    	}
    
    	var w int64
    	switch et {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

      ExpandParallelExecuteToIslands(island_op, parallel_execute_op, &builder,
                                     executes, legacy_graph_export,
                                     parallel_group_idx);
    
      // Remap all results of parallel_execute op with outputs from newly created
      // islands.
      llvm::SmallVector<Value, 8> parallel_execute_outputs;
      parallel_execute_outputs.reserve(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/reflectdata/helpers.go

    }
    
    // mapRType asserts that typ is a map type, and returns an expression
    // that yields the *runtime._type value representing typ.
    func mapRType(pos src.XPos, typ *types.Type) ir.Node {
    	return kindRType(pos, typ, types.TMAP)
    }
    
    // chanRType asserts that typ is a map type, and returns an expression
    // that yields the *runtime._type value representing typ.
    func chanRType(pos src.XPos, typ *types.Type) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. cmd/iam.go

    	sys.rolesMap = make(map[arn.ARN]string)
    
    	// From OpenID
    	if riMap := sys.OpenIDConfig.GetRoleInfo(); riMap != nil {
    		sys.validateAndAddRolePolicyMappings(ctx, riMap)
    	}
    
    	// From AuthN plugin if enabled.
    	if authn := newGlobalAuthNPluginFn(); authn != nil {
    		riMap := authn.GetRoleInfo()
    		sys.validateAndAddRolePolicyMappings(ctx, riMap)
    	}
    
    	sys.printIAMRoles()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    	// turn owned by this Deployment.
    	rsMap := make(map[types.UID]bool, len(rsList))
    	for _, rs := range rsList {
    		rsMap[rs.UID] = true
    	}
    	owned := &v1.PodList{Items: make([]v1.Pod, 0, len(all.Items))}
    	for i := range all.Items {
    		pod := &all.Items[i]
    		controllerRef := metav1.GetControllerOf(pod)
    		if controllerRef != nil && rsMap[controllerRef.UID] {
    			owned.Items = append(owned.Items, *pod)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          FuncOp::create(ops.front()->getLoc(), kHostFunctionAttr, func_type);
    
      // Create function body.
      Block* outlined_func_block = outlined_func.addEntryBlock();
    
      // Clone the operations and remap the inputs to use the function arguments.
      IRMapping mapping;
      mapping.map(inputs, outlined_func.getArguments());
      builder->setInsertionPoint(outlined_func_block, outlined_func_block->begin());
      for (Operation* op : ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

                          cluster_func_output_index, core_id));
        return mlir::failure();
      }
      return mlir::success();
    }
    
    // Collects tile sharded outputs from a tf_device.parallel_execute to remap from
    // the TPU computation result.
    mlir::LogicalResult GetTileShardedOutputsToMerge(
        const mlir::Location& location, const int cluster_func_output_index,
        llvm::ArrayRef<xla::OpSharding> output_sharding_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/range.go

    		as := ir.NewAssignStmt(base.Pos, hu, ir.NewBinaryExpr(base.Pos, ir.OADD, huVal, ir.NewInt(base.Pos, elem.Size())))
    		nfor.Post = ir.NewBlockStmt(base.Pos, []ir.Node{nfor.Post, as})
    
    	case k == types.TMAP:
    		// order.stmt allocated the iterator for us.
    		// we only use a once, so no copy needed.
    		ha := a
    
    		hit := nrange.Prealloc
    		th := hit.Type()
    		// depends on layout of iterator struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                    return sourcePath + File.separatorChar + absolutePath.substring(targetPath.length() + 1);
                }
                throw new IllegalArgumentException("Cannot remap path '" + absolutePath + "' which does not have '" + targetPath + "' as a prefix");
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		}
    
    	case ssa.OpPPC64LoweredAtomicAnd8,
    		ssa.OpPPC64LoweredAtomicAnd32,
    		ssa.OpPPC64LoweredAtomicOr8,
    		ssa.OpPPC64LoweredAtomicOr32:
    		// LWSYNC
    		// LBAR/LWAR	(Rarg0), Rtmp
    		// AND/OR	Rarg1, Rtmp
    		// STBCCC/STWCCC Rtmp, (Rarg0)
    		// BNE		-3(PC)
    		ld := ppc64.ALBAR
    		st := ppc64.ASTBCCC
    		if v.Op == ssa.OpPPC64LoweredAtomicAnd32 || v.Op == ssa.OpPPC64LoweredAtomicOr32 {
    			ld = ppc64.ALWAR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top