Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for GetOwner (0.42 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

            return partitioned_output.emitOpError()
                   << "must be a unique user of TPU Cluster "
                      "(tf_device.old_parallel_execute) output "
                   << *old_parallel_execute_output.getOwner();
          if (UnsupportedPartitionedShardingType(output_sharding_type))
            return old_parallel_execute.emitOpError()
                   << "unsupported output sharding type "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            override fun stepEvaluationListener(listener: ProjectEvaluationListener, action: Action<ProjectEvaluationListener>): ProjectEvaluationListener? {
                shouldNotBeUsed()
            }
    
            override fun getOwner(): ProjectState {
                return delegate.owner
            }
    
            override fun getBuildscript(): ScriptHandlerInternal {
                onAccess("buildscript")
                return delegate.buildscript
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                                         unsigned dst_index) {
      if (auto input_result = mlir::dyn_cast<mlir::OpResult>(src)) {
        auto* input_inst = GetIslandInnerOpOrSelf(input_result.getOwner());
        // Replaces the input node with NextIteration sink if it is a NextIteration
        // source.
        if (auto next_iter_source =
                llvm::dyn_cast<mlir::tf_executor::NextIterationSourceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                                         unsigned dst_index) {
      if (auto input_result = mlir::dyn_cast<mlir::OpResult>(src)) {
        auto* input_inst = GetIslandInnerOpOrSelf(input_result.getOwner());
        // Replaces the input node with NextIteration sink if it is a NextIteration
        // source.
        if (auto next_iter_source =
                llvm::dyn_cast<mlir::tf_executor::NextIterationSourceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            projectPath(_) >> { String name ->
                Path.path(":project").child(name)
            }
            getGradle() >> Mock(GradleInternal) {
                getIdentityPath() >> Path.path(":")
            }
            getOwner() >> Mock(ProjectState) {
                getDepth() >> 0
                getProjectPath() >> Path.path(":project")
            }
            getServices() >> Mock(ServiceRegistry)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

              // the float backbone.
              dequantize.getResult().replaceUsesWithIf(
                  float_op->getResult(i), [&](OpOperand& use) {
                    return !use.getOwner()->hasAttr(kDebugModeOpQuantAttrName);
                  });
            }
          }
        }
      }
    
      QuantPassSpec quant_params_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

          value.replaceAllUsesWith(new_element.getResult());
        }
        return;
      }
    
      Value sub_tuple;
      for (auto& use : llvm::make_early_inc_range(value.getUses())) {
        if (isa<GetTupleElementOp>(use.getOwner())) {
          use.set(replacement);
          continue;
        }
    
        if (!sub_tuple)
          sub_tuple = CreateSubTuple(builder, replacement, tuple_type.size());
    
        use.set(sub_tuple);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Monitor.java

      //
      // 3. I think "enterWhen(notEmpty)" reads better than "notEmpty.enter()".
      //
      // TODO(user): Implement ReentrantLock features:
      //    - toString() method
      //    - getOwner() method
      //    - getQueuedThreads() method
      //    - getWaitingThreads(Guard) method
      //    - implement Serializable
      //    - redo the API to be as close to identical to ReentrantLock as possible,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Monitor.java

      //
      // 3. I think "enterWhen(notEmpty)" reads better than "notEmpty.enter()".
      //
      // TODO(user): Implement ReentrantLock features:
      //    - toString() method
      //    - getOwner() method
      //    - getQueuedThreads() method
      //    - getWaitingThreads(Guard) method
      //    - implement Serializable
      //    - redo the API to be as close to identical to ReentrantLock as possible,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top