Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for I64Attr (0.31 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

        DefaultValuedOptionalAttr<I64Attr, "-1">:$lhs_quantization_axis,
        DefaultValuedOptionalAttr<I64Attr, "-128">:$lhs_quantization_min_val,
        DefaultValuedOptionalAttr<I64Attr, "127">:$lhs_quantization_max_val,
        DefaultValuedOptionalAttr<I64Attr, "-1">:$rhs_quantization_axis,
        DefaultValuedOptionalAttr<I64Attr, "-128">:$rhs_quantization_min_val,
        DefaultValuedOptionalAttr<I64Attr, "127">:$rhs_quantization_max_val,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      }];
    
      let arguments = (ins
        TFRT_ChainType:$in_ch,
        I64Attr:$num_args,
        StrAttr:$device,
        ArrayAttr:$op_attrs,
        // TODO(b/173025975): consider using DictionaryAttr after we support
        // BEF conversion for this type.
        ArrayAttr:$op_func_attrs,
        I64Attr:$op_key,
        StrAttr:$op_name
      );
    
      let results = (outs
        TFRT_ChainType:$out_ch
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        TF_Int32Tensor:$id_counts,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$num_replica,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$max_minibatches_per_sc,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$max_ids_per_chip_per_sample,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$table_vocab_size,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$feature_width,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        TF_I32OrI64Tensor:$strides,
        TF_Tensor:$value,
    
        DefaultValuedOptionalAttr<I64Attr, "0">:$begin_mask,
        DefaultValuedOptionalAttr<I64Attr, "0">:$end_mask,
        DefaultValuedOptionalAttr<I64Attr, "0">:$ellipsis_mask,
        DefaultValuedOptionalAttr<I64Attr, "0">:$new_axis_mask,
        DefaultValuedOptionalAttr<I64Attr, "0">:$shrink_axis_mask
      );
    
      let results = (outs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/passes/decompose_patterns.td

    def QuantActRangeReluPattern :
      Pattern<
        (TFR_TFRQuantActRangeOp
         (TFR_ConstOp HasStringAttr<"RELU">:$act),
         (ConstantLikeMatcher F32Attr:$scale),
         (ConstantLikeMatcher I64Attr:$zp)),
        [(TFR_ConstantTensorOp (Arith_ConstantOp (Quantize<"0.0f"> $scale, $zp))),
         (TFR_ConstantTensorOp (Arith_ConstantOp ConstantAttr<I32Attr, "127">))]>;
    
    def QuantActRangeRelu6Pattern :
      Pattern<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

        Set a tensor in resource array.
    
        arg: the tensor to be set in the resource array.
        index: the index in the resource array
      }];
    
      let arguments = (ins
        TFTensorType:$arg,
        I64Attr:$index
      );
    
      let results = (outs);
    
      let assemblyFormat = "operands attr-dict";
    }
    
    def SetResourceDhtOp : FallbackSync_Op<"set_resource_dht", [CoreRT_TypedAttributeTrait]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

      }];
    
      let arguments = (ins
        F32Tensor:$inputs,
        F32ArrayAttr:$min,
        F32ArrayAttr:$max,
        // The quantized dimension of the inputs tensor.
        I64Attr:$axis,
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        I64Attr:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$narrow_range,
        // The sign of the quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      }];
    
      let arguments = (ins
        F32Tensor:$inputs,
        F32ArrayAttr:$min,
        F32ArrayAttr:$max,
        // The quantized dimension of the inputs tensor.
        I64Attr:$axis,
        // The bitwidth of the quantization; between 2 and 16, inclusive.
        I64Attr:$num_bits,
        // Quantization range starts from 0 or 1; starts from 1 if true.
        DefaultValuedOptionalAttr<BoolAttr, "false">:$narrow_range,
        // The sign of the quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        index as its identifier. It can be retrieved by _TfrtGetResource using the
        same index.
      }];
    
      let arguments = (ins
        TF_Tensor:$arg,
        I64Attr:$index
      );
    }
    
    def TF__TfrtGetResourceOp : TF_Op<"_TfrtGetResource",
        [Pure, TF_NoConstantFold, DeclareOpInterfaceMethods<TF_ResourceHandleAllocatorInterface>]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

      [(TF_OneHotOp:$labels $sparse_labels,
         (TF_ConstOp (GetDimSizeAsI32<1> $features, $src_op__0)),
         (TF_ConstOp (GetScalarOfType<1> $features)),
         (TF_ConstOp (GetScalarOfType<0> $features)),
         ConstantAttr<I64Attr, "1">),
       (TF_SelectV2Op:$zero_or_nan
         (TF_LogicalAndOp
           (TF_LessEqualOp
             (TF_ConstOp (GetScalarOfType<0> $sparse_labels)), $sparse_labels),
           (TF_LessOp $sparse_labels,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top