Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,633 for ioperation (0.13 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

      auto& tensor = tensors_[itensor];
      auto& operation = operations_[ioperation];
    
      const auto& size = tensor.size;
    
      const bool will_be_first_use =
          tensor.operations.empty() || ioperation < tensor.first_use();
      const bool will_be_last_use =
          tensor.operations.empty() || ioperation > tensor.last_use();
    
      if (will_be_first_use) {
        operation.alloc += size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

      r_.AddOperation(/*is_stateful=*/false);
      r_.AddUse(/*ioperation=*/1, /*itensor=*/0);
      r_.AddUse(/*ioperation=*/2, /*itensor=*/0);
      r_.AddUse(/*ioperation=*/2, /*itensor=*/1);
      r_.AddUse(/*ioperation=*/3, /*itensor=*/0);
      r_.AddUse(/*ioperation=*/3, /*itensor=*/1);
      r_.AddUse(/*ioperation=*/3, /*itensor=*/2);
    
      // /* before */
      // %0 = f1()
      // %1 = f2(%0)
      // %2 = f3(%0,%1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // that is needed when performing the i-th operation. This is the
      // sum of the sizes of
      //
      // (1) input tensors of that operation,
      // (2) output tensors of that operation,
      // (3) output tensors of preceding operations that are input tensors
      //     of subsequent operations.
      using MemProfile = std::vector<SizeT>;
    
      // Used for specifying memory consumption at a certain operation in the
      // computational graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	grm.(*nestedPendingOperations).lock.Lock()
    	defer grm.(*nestedPendingOperations).lock.Unlock()
    	for _, op := range grm.(*nestedPendingOperations).operations {
    		if op.key.podName == podName2 {
    			t.Errorf("NestedPendingOperations failed. Operation for pod2 should be removed")
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/Operation.java

            return new Comparator<Operation>() {
                @Override
                public int compare(Operation o1, Operation o2) {
                    long byElapsedTime = o2.getElapsedTime() - o1.getElapsedTime();
                    if (byElapsedTime > 0) {
                        return 1;
                    } else if (byElapsedTime < 0) {
                        return -1;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Operations.groovy

     * When a property is accessed, queries an existing operation, asserting that it exists. For example:
     *
     * <pre>
     *  when:
     *  // runs the given closure and defines operation 'doStuff'
     *  operation.doStuff {
     *      // do some test action
     *  }
     *
     *  then:
     *  // query
     *  operation.doStuff.end > operation.doStuff.start
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/registry/core/service/portallocator/operation.go

    func (op *PortAllocationOperation) AllocateNext() (int, error) {
    	if op.dryRun {
    		// Find the max element of the allocated ports array.
    		// If no ports are already being allocated by this operation,
    		// then choose a sensible guess for a dummy port number
    		var lastPort int
    		for _, allocatedPort := range op.allocated {
    			if allocatedPort > lastPort {
    				lastPort = allocatedPort
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    Vous devez vous assurer qu'il est unique pour chaque opération.
    
    ```Python hl_lines="6"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial001.py!}
    ```
    
    ### Utilisation du nom *path operation function* comme operationId
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. docs/en/docs/tutorial/path-operation-configuration.md

    # Path Operation Configuration
    
    There are several parameters that you can pass to your *path operation decorator* to configure it.
    
    !!! warning
        Notice that these parameters are passed directly to the *path operation decorator*, not to your *path operation function*.
    
    ## Response Status Code
    
    You can define the (HTTP) `status_code` to be used in the response of your *path operation*.
    
    You can pass directly the `int` code, like `404`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top