Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,303 for Region (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

    };
    
    // Return a bitvector that marks all return values that always come from
    // the same value.
    llvm::BitVector GetInvariantReturns(Region* region, int number_of_results) {
      llvm::BitVector invariant(number_of_results, true);
      std::vector<Value> used_argument(number_of_results, nullptr);
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
          if (!op.hasTrait<OpTrait::ReturnLike>()) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          SetPotentiallyWritten(operand->get());
        }
      });
    }
    
    void ResourceAnalyzer::PropagatePotentiallyWrittenUpFromCallee(
        Region& region, Operation::operand_range propagate_to) {
      (void)AnalyzeRegion(region);
      for (auto t : llvm::zip(region.getArguments(), propagate_to)) {
        if (!IsResource(std::get<0>(t))) {
          continue;
        }
        if (IsPotentiallyWritten(std::get<0>(t))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

          }
          // We treat block arguments of inner blocks as "results", too, in
          // the sense that they're values produced inside this op.
          for (Region& region : op->getRegions()) {
            for (Block& block : region.getBlocks()) {
              for (BlockArgument& arg : block.getArguments()) {
                all_internal_results.insert(arg);
              }
            }
          }
        });
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. cmd/auth-handler.go

    	case authTypeSigned, authTypePresigned:
    		region := globalSite.Region()
    		switch action {
    		case policy.GetBucketLocationAction, policy.ListAllMyBucketsAction:
    			region = ""
    		}
    		if s3Err = isReqAuthenticated(ctx, r, region, serviceS3); s3Err != ErrNone {
    			return s3Err
    		}
    		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
    	}
    	if s3Err != ErrNone {
    		return s3Err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/internal/fuzz/mem.go

    // explanation.
    type sharedMem struct {
    	// f is the file mapped into memory.
    	f *os.File
    
    	// region is the mapped region of virtual memory for f. The content of f may
    	// be read or written through this slice.
    	region []byte
    
    	// removeOnClose is true if the file should be deleted by Close.
    	removeOnClose bool
    
    	// sys contains OS-specific information.
    	sys sharedMemSys
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/python/mlir_wrapper/basic_classes.cc

          });
    
      py::class_<mlir::Region>(m, "Region")
          .def("back", &mlir::Region::back, py::return_value_policy::reference)
          .def("front", &mlir::Region::front, py::return_value_policy::reference)
          .def("add_block", [](mlir::Region& r) { r.push_back(new mlir::Block); })
          .def("push_back", &mlir::Region::push_back)
          .def("size", [](mlir::Region& r) { return r.getBlocks().size(); })
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 22 04:26:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. cluster/gce/list-resources.sh

    gcloud-list compute firewall-rules "name ~ 'default.*|k8s-fw.*|${INSTANCE_PREFIX}.*'"
    GREP_REGEX=""
    gcloud-list compute forwarding-rules ${REGION:+"region=(${REGION})"}
    gcloud-list compute target-pools ${REGION:+"region=(${REGION})"}
    
    gcloud-list logging sinks
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/hoist_loop_invariant.cc

      return moveLoopInvariantCode(
          loopLike.getLoopRegions(),
          [&](Value value, Region *) {
            return loopLike.isDefinedOutsideOfLoop(value);
          },
          [&](Operation *op, Region *region) {
            return ShouldMoveOutOfRegion(op, region, read_only_vars);
          },
          [&](Operation *op, Region *) { loopLike.moveOutOfLoop(op); });
    }
    
    void HoistLoopInvariantPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          // If the user is not in one of the regions, we are not interested in it.
          // Since all the sub-regions within this region (i.e., regions attached to
          // op's in this region) have themselves gone through lifting, all resource
          // users are expected to be operations in this region and not embedded
          // within other sub-regions attached to ops in this region. So the check
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. internal/event/config.go

    }
    
    // Validate - checks whether queue has valid values or not.
    func (q Queue) Validate(region string, targetList *TargetList) error {
    	if q.ARN.region == "" {
    		if !targetList.Exists(q.ARN.TargetID) {
    			return &ErrARNNotFound{q.ARN}
    		}
    		return nil
    	}
    
    	if region != "" && q.ARN.region != region {
    		return &ErrUnknownRegion{q.ARN.region}
    	}
    
    	if !targetList.Exists(q.ARN.TargetID) {
    		return &ErrARNNotFound{q.ARN}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top