Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for GetOwner (0.14 sec)

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

      auto cast_op_input = dyn_cast_or_null<TF::CastOp>(cast_input.getDefiningOp());
      while (block_arg || cast_op_input) {
        if (block_arg) {
          // Change on device function type/shape.
          HandleFuncOp(block_arg.getOwner()->getParentOp());
          block_arg = nullptr;
          cast_op_input = nullptr;
        } else {
          auto cast_input = cast_op_input.getX();
          // Update input type.
          auto transform_result_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

            private final Closure<T> delegate;
    
            private BuildOperationEmittingClosure(UserCodeApplicationContext.Application application, String registrationPoint, Closure<T> delegate) {
                super(delegate.getOwner(), delegate.getThisObject());
                this.application = application;
                this.delegate = delegate;
                this.registrationPoint = registrationPoint;
            }
    
            @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      while (target_blocks.find(value.getParentBlock()) == target_blocks.end()) {
        Value new_value = nullptr;
        for (OpOperand& operand : value.getUses()) {
          Operation* owner = operand.getOwner();
          if (!llvm::isa<tf_device::ReturnOp>(owner)) continue;
          Operation* parent = owner->getParentOp();  // op that owns the "return"
          if (llvm::isa<tf_device::LaunchOp>(parent)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

        if (auto read_op = llvm::dyn_cast<TF::ReadVariableOp>(&op)) {
          if (auto func_arg =
                  mlir::dyn_cast<BlockArgument>(read_op.getResource())) {
            if (func_arg.getOwner() != &block)
              return read_op.emitOpError(kResourceFunctionMsg);
    
            ResourceInfo& resource_info = resources[func_arg.getArgNumber()];
            resource_info.read = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

          this.task = task;
        }
    
        @Override
        public void run() {}
    
        private void setOwner(Thread thread) {
          super.setExclusiveOwnerThread(thread);
        }
    
        @VisibleForTesting
        @CheckForNull
        Thread getOwner() {
          return super.getExclusiveOwnerThread();
        }
    
        @Override
        public String toString() {
          return task.toString();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

                final FileOwnerAttributeView ownerAttrView = Files.getFileAttributeView(file.toPath(), FileOwnerAttributeView.class);
                if (ownerAttrView != null) {
                    final UserPrincipal owner = ownerAttrView.getOwner();
                    if (owner != null) {
                        responseData.addMetaData(FS_FILE_USER, owner.getName());
                    }
                }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

                final Iterable<File> files = getIdeaModuleLibraryDependenciesAsFiles(ideaModule);
                ProjectLibrary library = ((ProjectInternal) scalaProject).getOwner().fromMutableState(p -> createScalaSdkLibrary(scalaProject, files, useScalaSdk, ideaModule));
                if (library != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_weight_param.cc

      // trait.
      static bool IsWeightQuantizableFunction(OpOperand& operand, int64_t rank) {
        if (operand.getOperandNumber() != 1) {
          return false;
        }
        Operation* user = operand.getOwner();
        if (!IsWeightOnlyQuantizableOp(*user)) {
          return false;
        }
        Method method = GetQuantizationMethodOrDefault(user);
        return HasValidWeightOnlyPtqMethod(method.weight_only_ptq(), rank);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

          llvm::SmallVector<mlir::Value> next_values_to_visit;
          for (auto cur_op : uses_at_current_level) {
            for (auto& cur_op_use : cur_op.getUses()) {
              Operation* next_op = cur_op_use.getOwner();
              int next_op_operand_num = cur_op_use.getOperandNumber();
              if (auto call_op = llvm::dyn_cast<mlir::CallOpInterface>(next_op)) {
                mlir::func::FuncOp func =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

            // particular use that owns DumpTensor.
            rewriter.replaceUsesWithIf(
                op.getResult(0), new_op->getResult(0), [](OpOperand &use) -> bool {
                  return !isa<TF::DumpTensorOp>(use.getOwner());
                });
          }
        }
      }
    
      DebuggerType debugger_type_;
      std::string log_dir_path_;
    };
    
    static PassRegistration<AddDumpTensorOpPass> pass;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top