Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for transformAction (0.22 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                addIfNotNull(defaultRendererOption)
                addAll(directives[PRETTY_RENDERER_OPTION])
            }.fold(defaultRenderer) { acc, prettyRenderingMode ->
                prettyRenderingMode.transformation(acc)
            }
    
            fun KaSession.safePointer(ktSymbol: KaSymbol): PointerWrapper? {
                val regularPointer = ktSymbol.runCatching {
                    createPointerForTest(disablePsiBasedSymbols = false)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      tensorflow::InitMlir y(&argc, &argv);
    
      // TODO(antiagainst): We are pulling in multiple transformations as follows.
      // Each transformation has its own set of command-line options; options of one
      // transformation can essentially be aliases to another. For example, the
      // -tfl-annotate-inputs has -tfl-input-arrays, -tfl-input-data-types, and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.transformation.impl;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    
    import org.apache.maven.model.Model;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    #include "tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Performs post-calibration graph transformation as part of post-training
    // static-range quantization.
    //
    // The resulting `ModuleOp` contains quantized StableHLO ops serialized in
    // `TF::XlaCallModuleOp`s. They are quantized using the statistics collected
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactory.java

                super(name, parent, classPath);
            }
    
            @Override
            protected byte[] transform(String className, byte[] bytes) {
                // First scan for annotation, and short circuit transformation if not present
                ClassReader classReader = new ClassReader(bytes);
    
                AnnotationDetector detector = new AnnotationDetector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass reduces the precision of some tensor types by first
    // checking if all values within that tensor are within the range.
    // This pass is added to aid conversion of models that involve types not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // ops.
      // $rhs is required to be the tail shape of $lhs, so after transformation the
      // shape of the binary op result is valid. For example, assume the shapes of
      // $input, $lhs and $rhs are [1600], [1,40,40] and [40x1]. After the
      // transformation, the shape of the binary op result is [40x1600], which
      // couldn't be reshaped to [1,40,40]. `IsTailOfShape` constraint is added to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

      }
    
      void runOnOperation() override;
    };
    
    // Propagate dequantize op if the next op supports the data type.
    // Given the below graph,
    // op_before_dequantize -> dequantize_op -> user_op -> rest_op
    // the transformation is applied to result the following graph:
    // op_before_dequantize -> user_op -> new_dequantize_op -> rest_op
    class PropagateDequantizeOpIfAllowed
        : public OpRewritePattern<TF::PartitionedCallOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

    // `saved_model_dir` into a MLIR module. Creates MLIR entities into the
    // given MLIR `context`. This does not create session internally so it is faster
    // and does not perform any graph transformation.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelSignatureDefsToMlirImportLite(
        absl::string_view saved_model_dir,
        const std::unordered_set<std::string>& tags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/validators.h

    limitations under the License.
    ==============================================================================*/
    
    // This header file defines common validators used by TFLite transformation
    // passes to validate op attributes or values.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_UTILS_VALIDATORS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_UTILS_VALIDATORS_H_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top