Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 122 for lowering (0.2 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (is_output_shape_dynamic && is_broadcast_shape_dynamic)
          return rewriter.notifyMatchFailure(
              loc, "output_rank or broadcast_to shape not supported");
    
        // Allow lowering when the input's elements type is F32, BFloat16, I32 or
        // I16.
        if (!(mlir::isa<BFloat16Type, Float32Type>(element_type) ||
              element_type.isInteger(32) || element_type.isInteger(16)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    // of this conversion is:
    // a' = (ADDCC x y)
    // a  = (Select0 a')
    // b  = (CMPconst [0] a)
    // c  = (OR a z)
    //
    // Which makes it trivial to rewrite b using a lowering rule.
    func convertPPC64OpToOpCC(op *Value) *Value {
    	ccOpMap := map[Op]Op{
    		OpPPC64ADD:      OpPPC64ADDCC,
    		OpPPC64ADDconst: OpPPC64ADDCCconst,
    		OpPPC64AND:      OpPPC64ANDCC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-57100`](https://youtrack.jetbrains.com/issue/KT-57100) K2 does not report Conflicting overloads and backend crashes with Exception during IR lowering on conflict overloading with suspend function
    - [`KT-59955`](https://youtrack.jetbrains.com/issue/KT-59955) K2: Disappeared INCOMPATIBLE_MODIFIERS
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
      return expanded_input;
    }
    
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/generated_legalize_hlo.inc"
    
    /// Performs the lowering to TF dialect.
    void LegalizeHloToTf::runOnOperation() {
      MLIRContext& context = getContext();
      mlir::ModuleOp module = getOperation();
    
      RewritePatternSet patterns(&getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    bool StridedSliceOp::GetSlicedBoundRanges(
        SmallVectorImpl<int64_t> *slice_begin, SmallVectorImpl<int64_t> *slice_end,
        SmallVectorImpl<int64_t> *slice_stride) {
      // TODO(hinsu): Support lowering for ops with dynamic begin and end values
      // when it is possible to derive indices based on mask attributes.
      DenseIntElementsAttr sparse_begin_attr, sparse_end_attr, sparse_strides_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. .idea/dictionaries/sergej_jaskiewicz.xml

    <component name="ProjectDictionaryState">
      <dictionary name="sergej.jaskiewicz">
        <words>
          <w>lowerings</w>
          <w>unmuted</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:16:15 UTC 2024
    - 179 bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Kube-controller-manager: increased the global level for broadcaster's logging to 3 so that users can ignore event messages by lowering the logging level. It reduces information noise. ([#122293](https://github.com/kubernetes/kubernetes/pull/122293), [@mengjiao-liu](https://github.com/mengjiao-liu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                String lowerKind = kind.toLowerCase();
                problem
                    .forProperty(propertyName)
                    .id(TextUtil.screamingSnakeToKebabCase(UNEXPECTED_INPUT_FILE_TYPE), "Unexpected input file type", GradleCoreProblemGroup.validation().property())
                    .contextualLabel(lowerKind + " '" + input + "' is not a " + lowerKind)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //      that the chlo ops emit produces more useful tests.
    //   2. With chlo legalization enabled, verifying diagnostics to pick up any
    //      issues with the full lowering (can catch some broadcasting corner
    //      cases which emit with a warning).
    
    //===----------------------------------------------------------------------===//
    // BatchNorm op legalizations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/resourcequota/admission_test.go

    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	informerFactory := informers.NewSharedInformerFactory(kubeClient, 0)
    
    	// disable consumption of cpu unless there is a covering quota.
    	// disable consumption of cpu unless there is a covering quota.
    	config := &resourcequotaapi.Configuration{
    		LimitedResources: []resourcequotaapi.LimitedResource{
    			{
    				Resource:      "pods",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top