Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,435 for useAbs (0.32 sec)

  1. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    
    /**
     * Reads input from this client stdin and forwards it to the daemon. Can either read raw content or read the user's response to some prompt.
     *
     * <p>Uses a single reader thread to perform all operations.
     */
    public class DaemonClientInputForwarder implements Stoppable {
        private final ForwardingUserInput forwarder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        GradleExecuter usingInitScript(File initScript);
    
        /**
         * Uses the given project directory
         */
        GradleExecuter usingProjectDirectory(File projectDir);
    
        /**
         * Uses the given build script
         */
        @Deprecated
        GradleExecuter usingBuildScript(File buildScript);
    
        /**
         * Sets the user's home dir to use when running the build. Implementations are not 100% accurate.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

      using OpRewritePattern<SrcOpT>::OpRewritePattern;
      // Class users should override this method if there are any op-specific
      // compatibility requirements between the contraction op and the BiasAdd op.
      virtual bool AreFuseCompatible(SrcOpT contraction_op, BiasAddOp bias_add,
                                     PatternRewriter &rewriter) const {
        return true;
      }
    
      // Class users should override this method if there are any op-specific
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    //      `_replication_info` attribute.
    //   2. Find users not in cluster that are interleaved between cluster ops.
    //   3. Find external uses of cluster ops.
    //   4. Create `tf_device.cluster` with results consisting of the external uses
    //      of cluster ops determined at 3.
    //   5. Move cluster ops to `tf_device.cluster` body.
    //   6. Replace external uses of cluster ops uses with `tf_device.cluster`
    //      results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        llvm::SmallVector<Operation *> users =
            GetClusteringCandidates(state, member.source);
    
        // Process candidates according to their order in the block to minimize
        // the number of dominance property violations.
        llvm::sort(users, [](auto *a, auto *b) { return a->isBeforeInBlock(b); });
    
        for (Operation *user : users) {
          auto user_member_id = state.member_ids.lookup(user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/generate-clients.md

    ```TypeScript
    ItemsService.createItemItemsPost({name: "Plumbus", price: 5})
    ```
    
    ...that's because the client generator uses the OpenAPI internal **operation ID** for each *path operation*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

        if constexpr (std::is_same_v<RootOpT, DequantizeOpT>) {
          if (op->getNumResults() != 1) {
            return failure();
          }
          auto users = op->getResult(0).getUsers();
          quantizing_ops.append(users.begin(), users.end());
        } else if constexpr (std::is_same_v<RootOpT, QuantizeOpT>) {
          if (op->getNumOperands() != 1) {
            return failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        }
      }
      for (auto local_var : local_vars) {
        auto users = LocalVarOp_resource(local_var).getUsers();
        if (llvm::all_of(users, [](const Operation *user) {
              return isa<TF::AssignVariableOp>(user) ||
                     isa<TF::DestroyResourceOp>(user);
            })) {
          for (auto user : llvm::make_early_inc_range(users)) user->erase();
          LocalVarOp_erase(local_var);
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

          if (globalTensor.getIsMutable()) {
            freezeable[val] = false;
            continue;
          }
    
          freezeable[val] = true;
    
          // Verify users are supported kind.
          for (Operation *user : val.getUsers()) {
            if (!(isa<TF::ReadVariableOp>(user) || isa<CallOpInterface>(user))) {
              freezeable[val] = false;
              // Error out early if possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

      while (!todo.empty() || !ready.empty()) {
        while (!todo.empty()) {
          Value value = todo.front();
          todo.pop();
          // All operations that have all their inputs available are good to go.
          // Uses, not Users, in case getUsers ever dedups.
          for (OpOperand& operand : value.getUses()) {
            Operation* user = ancestor[operand.getOwner()];
            remaining_incoming_data_edges[user]--;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top