Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HYBRID (0.07 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %0 : tensor<1x2x4x5xf32>
    }
    
    // CHECK: stablehlo.constant
    // CHECK-NOT: tfl.pseudo_qconst
    // CHECK-NOT: tfl.pseudo_const
    // CHECK-NOT: arith.constant
    
    // -----
    
    // Tests that a hybrid quantized dot_general is splitted into dequantize and float
    // dot_general.
    
    // CHECK-LABEL: func @dot_general_hybrid
    // CHECK-SAME: %[[ARG0:.+]]: tensor<1x2x3x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        rewriter.replaceOpWithNewOp<TFL::QConstOp>(
            op, /*qtype=*/TypeAttr::get(op.getOutput().getType()),
            /*value=*/op.getValue());
      }
    };
    
    // Splits hybrid quantized `stablehlo.dot_general` into `tfl.dequantize` and
    // float `stablehlo.dot_general` op. Legalization of float
    // `stablehlo.dot_general` op relies on existing passes for conversion of
    // StableHLO -> MHLO -> TF -> TFL.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16};
        }
      }];
    }
    
    // UnidirectionalSequenceLstm op.
    // TODO(ashwinm): Add constraint to validate the combination of operands
    // that are valid for hybrid vs fully quantized vs float only semantics
    def TFL_UnidirectionalSequenceLSTMOp :
      TFL_Op<"unidirectional_sequence_lstm",
              [LstmMandatoryInputsConstraint,
               LstmOptionalPeepholeWeightConstraint,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      auto lookup_attr = operands[0].dyn_cast_or_null<DenseIntElementsAttr>();
      auto value_attr = operands[1].dyn_cast_or_null<DenseElementsAttr>();
      if (!lookup_attr || !value_attr) {
        return {};
      }
    
      // Hybrid lookup is not supported.
      if (value_attr.getType().getElementType() != getType().getElementType()) {
        return {};
      }
    
      // Expect 1d lookup tensor and a non-scalar input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.4.md

    - **Cluster Federation**
      - Global Multi-cluster HTTP(S) Ingress across GCE and GKE clusters.
      - Expanded support for federated hybrid-cloud resources including ReplicaSets, Secrets, Namespaces and Events.
    - **Security**
      - Increased pod-level security granularity (eg: Container Image Policies, AppArmor and `sysctl` support)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top