Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,065 for ioperation (0.31 sec)

  1. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                id1 = operation.id
                assert operation.id != null
                assert operation.parentId == null
                assert operation.toString() == "<thread-1>"
            }
            1 * listener.start(_, _) >> { BuildOperationDescriptor descriptor, BuildOperationState operation ->
                id2 = operation.id
                assert operation.id != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            dirty = false
        }
    
        protected Operation newOperation(StartEvent startEvent, Operation parent, OperationDescriptor descriptor) {
            new Operation(startEvent, parent, descriptor)
        }
    
        protected void otherEvent(ProgressEvent event, Operation operation) {
            throw new AssertionError("Unexpected type of progress event received: ${event.getClass()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        }
    
      // Sort matched operations by their position in the block.
      llvm::sort(cluster.operations, [](Operation *a, Operation *b) -> bool {
        return a->isBeforeInBlock(b);
      });
    
      // Create tf_device::ClusterOp before the last operation in the block that
      // is a part of a match set.
      auto back = cluster.operations.back();
      auto loc = back->getLoc();
      OpBuilder builder(back);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            }
    
            then:
            events.operations.size() == 3
            events.trees == events.operations
            events.operations.every { it.successful }
            events.operation("Download ${projectFModuleMissing.pom.uri}").assertIsDownload(projectFModuleMissing.pom)
            events.operation("Download ${projectF2.pom.uri}").assertIsDownload(projectF2.pom)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                assert it.parentId == treeOperations.first().id
            }
            return buildOperations
        }
    
        private BuildOperationRecord operation() {
            def operations = operations()
            assert operations.size() == 1
            return operations[0]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // identity ops, chain_src and chain_sink, per resource equivalence class.
    // Using the resource to operations map, it adds (1) a control dependency
    // from chain_src to all the operations that read/write to a resource of the
    // equivalence class, and (2) a control dependency from all the operations that
    // read/write to a resource of the class to the chain_sink operation.
    void ChainResourceOps(
        func::FuncOp func, ResourceToOpsMapTy& chain_resource_to_ops_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        }
      });
    }
    
    // Move Transpose operations that permute `op` results before the `op`.
    void MoveTransposeBefore(Operation* op, SmallVector<Operation*, 8>* work_list) {
      // TODO(ezhulenev): Move transpose across layout sensitive operations.
      if (!op->hasTrait<OpTrait::TF::LayoutAgnostic>()) return;
    
      // Transpose operations that use operation results.
      SmallVector<TransposeOp, 2> transpose_ops;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        // Clones the tf_device.remote_run operation to replace its callee args with
        // the results of the other tf_device.remote_run operations using the
        // `mapping` as appropriate.
        Operation *cloned_remote_run_op =
            builder.clone(*remote_run_op.getOperation(), mapping);
        remote_run_op.erase();
    
        // Replaces usages of the results of the original operations with the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

    }
    
    bool HasDataDependencyWithUnscheduledOp(
        Operation& op, Block* block, SmallPtrSet<Operation*, 16>& unscheduled_ops) {
      WalkResult ready_to_schedule = op.walk([&](Operation* nested_op) {
        for (Value operand : nested_op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!defining_op) continue;
          Operation* producer_in_block = block->findAncestorOpInBlock(*defining_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

    import org.gradle.internal.operations.BuildOperationCategory;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationIdFactory;
    import org.gradle.internal.operations.BuildOperationMetadata;
    import org.gradle.internal.operations.BuildOperationRef;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top