Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 533 for Transformed (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

            // Keep track of transformed artifacts as a given artifact may appear in multiple variants and configurations
            Map<LocalComponentArtifactMetadata, LocalComponentArtifactMetadata> transformedArtifacts = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                }
                            }
                        }
                    }
                }
            }
        }
    
        @TargetGradleVersion(">=8.8")
        def "reports transformed display names with DisplayNameGeneration"() {
            file("src/test/java/org/example/ComplexTests.java") << """package org.example;
    
    import org.junit.jupiter.api.*;
    import org.junit.jupiter.params.ParameterizedTest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/get_alternative_subgraph.cc

      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    }
    
    // Get the alternative view of the func for the given device_inference_type.
    // It's possible the transformed func can still contain unsupported ops for the
    // given device_inference_type.
    func::FuncOp AlternativeSubgraphPass::GetAlternativeViewForSpec(
        func::FuncOp func, const InferenceDeviceType& current_device_inference_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        ```mlir
          %0 = "tf.ReadVariableOp"(%arg0)
          %1 = "tf.ReadVariableOp"(%arg1)
          %2 = "tf.TPUExecute"(%0, %1, %compile)
          %3 = "tf.AssignVariableOp"(%arg0, %2)
        ```
    
        will be transformed into
    
        ```mlir
          %2 = "tf.TPUExecuteAndUpdateVariables"(%arg0, %arg1, %compile)
            { device_var_reads_indices = [0, 1],
              device_var_updates_indices = [0, -1] }
        ````
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        if (failed((isQuantizableWeight(op)))) {
          return failure();
        }
    
        // 2. Quantize the constant to the provided data type.
        // After quantization, the graph will be transformed
        // from:
        // const -> some op -> quantizable_op
        // to:
        // q_const -> dequant_op -> some op -> quantizable_op
        //
        // A dequant_op will propagate to further quantize the next ops in another
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Lists.java

        return cartesianProduct(Arrays.asList(lists));
      }
    
      /**
       * Returns a list that applies {@code function} to each element of {@code fromList}. The returned
       * list is a transformed view of {@code fromList}; changes to {@code fromList} will be reflected
       * in the returned list and vice versa.
       *
       * <p>Since functions are not reversible, the transform is one-way and new items cannot be stored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    struct TrivialTransformInfo {
      // Can the op be transformed trivially?
      bool can_transform = false;
    
      // List of callee names (one for each region).
      llvm::SmallVector<StringRef, 2> callee_names;
    
      // Analyzes the given calls (from regions attached to the same parent op) to
      // check if the parent op be transformed to functional form trivially (i.e.,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

         *
         * @since 3.5
         */
        public void file(Action<? super XmlFileContentMerger> action) {
            action.execute(file);
        }
    
        /**
         * Source directories to be transformed into wb-resource elements.
         * <p>
         * For examples see docs for {@link EclipseWtp}
         * <p>
         * Only source dirs that exist will be added to the wtp component file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        %0 = tfl.add %arg0, %arg1 {fused_activation_function = "RELU6", tac.device = "GPU", tac.inference_type = "FLOAT"} : tensor<1xf32>
        return %0 : tensor<1xf32>
      }
    ```
    
    Will be transformed into:
    
    ```
     func private @func_2_CPU_FLOAT(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<2x1xf32> attributes {tac.device = "CPU", tac.inference_type = "FLOAT", tac.interface_name = "func_2"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Lists.java

        return cartesianProduct(Arrays.asList(lists));
      }
    
      /**
       * Returns a list that applies {@code function} to each element of {@code fromList}. The returned
       * list is a transformed view of {@code fromList}; changes to {@code fromList} will be reflected
       * in the returned list and vice versa.
       *
       * <p>Since functions are not reversible, the transform is one-way and new items cannot be stored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top