Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for TD (0.02 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    limitations under the License.
    ==============================================================================*/
    include "mlir/IR/OpBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.td"
    
    def NonScalarRankedType : Type<And<[Neg<HasAnyRankOfPred<[0]>>, HasRankPred]>,
                             "Non scalar type">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    ==============================================================================*/
    
    // This is the operation interface definition file for TensorFlow Lite.
    
    #ifndef TFL_OP_INTERFACES
    #define TFL_OP_INTERFACES
    
    include "mlir/IR/OpBase.td"
    
    def TFL_Dialect : Dialect {
      let name = "tfl";
    
      let description = [{
        The TensorFlow Lite dialect.
    
        This dialect maps to TensorFlow Lite operations.
    
        Invariants:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td

    limitations under the License.
    ==============================================================================*/
    #ifdef MLRT_DIALECT
    #else
    #define MLRT_DIALECT
    
    include "mlir/IR/OpBase.td"
    
    def Mlrt_Dialect : Dialect {
      let name = "mlrt";
    
      let description = [{
        The MLRT Dialect.
      }];
    
      let cppNamespace = "::mlrt::compiler";
    }
    
    def MlrtFutureType : DialectType<Mlrt_Dialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    limitations under the License.
    ==============================================================================*/
    include "mlir/IR/OpBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.td"
    
    class GetScalarOfFloatType<string value> : NativeCodeCall<
      "GetScalarOfType(getElementTypeOrSelf($0)," # value # ")">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    // This is the operation definition file for TensorFlow operations with
    // implementation available only in TFRT.
    
    #ifndef TFRT_OPS
    #define TFRT_OPS
    
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "mlir/IR/OpBase.td"
    
    def TF__TfrtSetResourceOp : TF_Op<"_TfrtSetResource", []> {
      let summary = "Set values as TFRT runtime's static resource.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.td

    limitations under the License.
    ==============================================================================*/
    
    #ifndef COMPOSITE_UTILS_TD
    #define COMPOSITE_UTILS_TD
    
    include "mlir/IR/PatternBase.td"
    
    // See the function doc in the header file.
    def GetNhwcReturnTypeFromNchw: NativeCodeCall<
      "GetNhwcReturnTypeFromNchw((*$0.begin()).getDefiningOp())">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

    ==============================================================================*/
    #ifdef TF_MLRT_OPS
    #else
    #define TF_MLRT_OPS
    
    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_dialect.td"
    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td"
    
    def CreateOp: TensorflowMlrt_Op<"createop", []> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    include "mlir/Interfaces/InferTypeOpInterface.td"
    include "mlir/Interfaces/LoopLikeInterface.td"
    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "mlir/IR/OpAsmInterface.td"
    include "mlir/IR/OpBase.td"
    include "mlir/IR/SymbolInterfaces.td"
    
    class TF_TensorListInitOp<string mnemonic> : TF_Op<mnemonic, [Pure]> {
      let results = (outs
        TF_VariantTensor:$handle
      );
    
      TF_DerivedOperandTypeAttr shape_type = TF_DerivedOperandTypeAttr<0>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    include "mlir/IR/OpBase.td"
    include "mlir/IR/PatternBase.td"
    include "mlir/Dialect/Arith/IR/ArithOps.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_ops.td"
    include "tensorflow/compiler/mlir/lite/utils/utils.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // Checks if the param passed is a F32 ElementsAttr.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    def QuantizeWeightPass : Pass<"stablehlo-quantize-weight", "mlir::func::FuncOp"> {
      let summary = "Quantizes the weight component of StableHLO graph.";
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top