Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for jaxb (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver.mlir

        %output_0, %min_1, %max_2, %histogram_3 = "tf.CustomAggregator"(%0) <{calibration_method = 1 : i32,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

        }
    
        public static class ParserHelper {
            static final String JAXP_SCHEMA_LANGUAGE
                    = "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
    
            static final String JAXP_SCHEMA_SOURCE
                    = "http://java.sun.com/xml/jaxp/properties/schemaSource";
    
            static final String XML_NAMESPACE_PREFIXES
                    = "http://xml.org/sax/features/namespace-prefixes";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    constexpr StringRef kStablehloModuleAttrsAttrName = "_stablehlo_module_attrs";
    constexpr StringRef kUsesShapePolymorphismAttr = "jax.uses_shape_polymorphism";
    
    // Default version number for native serialization.
    constexpr int64_t kDefaultVersion = 9;
    // Platforms for XlaCallModuleOp.
    constexpr StringRef kPlatformCpu = "CPU";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      [(HasValidRankedTensor $squeeze_op)]>;
    
    // Pattern to perform the following optimization
    // transpose [1xAxB] -> [1xBxA]
    //    |
    // reshape [1xBxA] -> [BxA]
    //    |
    // transpose [BxA] -> [AxB]
    //    ||
    // reshape [1xAxB] -> [AxB]
    def ConvertTrasposeReshapeTransposeToReshape : Pat<
      (TFL_TransposeOp:$second_transpose
        (TFL_ReshapeOp:$middle_reshape
          (TFL_TransposeOp:$first_transpose $input, $permutation2),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.td

    // Convert conv+sub+mul pattern to conv+mul+add.
    // (conv - sub) * mul -> conv * mul + (-sub) * mul
    //
    // This is needed to support Conv+BatchNorm pattern from Jax models converted
    // using jax2tf w/o native serialization. Note that Jax2tf patterns always
    // extend bias shapes to a rank of 4, e.g. 1x1x1x5.
    def ConvertSubMulToMulAdd : Pat<
      (TF_MulOp
        (TF_SubOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:24:59 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

    constexpr StringRef kStablehloModuleAttrsAttrName = "_stablehlo_module_attrs";
    // Attribute required for running shape refinement pass enabled in XlaCallModule
    // version 8 and above.
    constexpr StringRef kUsesShapePolymorphismAttr = "jax.uses_shape_polymorphism";
    
    bool IsInLiftedFunc(Operation* op) {
      if (op == nullptr) return false;
      return op->getParentOfType<func::FuncOp>()->hasAttr(kFusedFunctionAttr);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

        return %0 : tensor<10x1x3xf32>
      }
      // MIN-MAX-CHECK: func.func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

     *   source = sourceSets.main.allJava
     *   destinationDir = reporting.file("rest-api-docs")
     *   options.docletpath = configurations.jaxDoclet.files.asType(List)
     *   options.doclet = "com.lunatech.doclets.jax.jaxrs.JAXRSDoclet"
     *   options.addStringOption("jaxrscontext", "http://localhost:8080/myapp")
     * }
     * </pre>
     */
    @CacheableTask
    public abstract class Javadoc extends SourceTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

          mlir::mhlo::createLegalizeTorchIndexSelectToGatherPass());
    }
    
    // Converts TF SavedModel to StableHLO module. The input TF SavedModel can have
    // StableHLO module serialized into a XlaCallModuleOp. (ex: JAX/PyTorch models)
    void AddTFToStablehloPasses(
        mlir::PassManager& pm,
        llvm::ArrayRef<llvm::ArrayRef<int64_t>> input_arg_shapes) {
      pm.addPass(mlir::odml::CreateRenameEntrypointToMainPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/regexp/testdata/re2-search.txt

    ""
    "xb"
    regexps
    "\\bx\\b"
    -;-;-;-
    -;-;-;-
    "^(?:\\bx\\b)$"
    -;-;-;-
    -;-;-;-
    "^(?:\\bx\\b)"
    -;-;-;-
    -;-;-;-
    "(?:\\bx\\b)$"
    -;-;-;-
    -;-;-;-
    strings
    ""
    "axb"
    regexps
    "\\bx\\b"
    -;-;-;-
    -;-;-;-
    "^(?:\\bx\\b)$"
    -;-;-;-
    -;-;-;-
    "^(?:\\bx\\b)"
    -;-;-;-
    -;-;-;-
    "(?:\\bx\\b)$"
    -;-;-;-
    -;-;-;-
    strings
    ""
    "«x"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
Back to top