Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,321 for Pure (4.33 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def TFL_LogicalNotOp : TFL_Op<"logical_not", [
        Pure,
        SameOperandsAndResultShape]> {
      let summary = "Logical NOT operator";
    
      let description = [{
        Element-wise logical NOT operation.
      }];
    
      let arguments = (ins TFL_BoolTensor:$lhs);
    
      let results = (outs TFL_BoolTensor:$output);
    }
    
    def TFL_LogicalOrOp : TFL_Op<"logical_or", [Pure]> {
      let summary = "Logical OR operator";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      }];
    
      let assemblyFormat = [{
        $callee `(` $args `)` attr-dict `:` functional-type($args, results)
      }];
    }
    
    def TFR_CastOp : TFR_Op<"cast", [Pure]> {
      let description = [{
        The `cast` operation converts the operand with built-in tensor type to
        tfr.tensor type, or vice versa.
    
        Example:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    are in `[0,1]`.
    
    `output[..., 0]` contains hue, `output[..., 1]` contains saturation, and
    `output[..., 2]` contains value. All HSV values are in `[0,1]`. A hue of 0
    corresponds to pure red, hue 1/3 is pure green, and 2/3 is pure blue.
    
    Usage Example:
    
    >>> blue_image = tf.stack([
    ...    tf.zeros([5,5]),
    ...    tf.zeros([5,5]),
    ...    tf.ones([5,5])],
    ...    axis=-1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.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>;
    
      let hasVerifier = 1;
    
      DerivedTypeAttr element_dtype = DerivedTypeAttr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      );
    
      let assemblyFormat = "operands attr-dict `:` `(` type($in_ch) `)` `->` `(` type($out_ch) `,` type($results) `)`";
    }
    
    def ConstTensorProtoOp : FallbackAsync_Op<"const_tensor_proto",
        [Pure, CoreRT_TypedAttributeTrait,
         TFRT_CostFunctionInterface, TFRT_FixedCost<1>]> {
      let summary = "Create a tensorflow tensor from serialized tensor proto";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // (where the operand and result type are not quantized) at all points where
    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def Quantization_QuantizeCastOp : Quantization_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        I64ArrayAttr:$indices
      );
    
      let results = (outs
        Variadic<TFTensorType>:$results
      );
    
      let assemblyFormat = "attr-dict `:` type($results)";
    }
    
    def AwaitOp: TensorflowMlrt_Op<"await", [Pure]> {
      let summary = "Await a tensor from a !mlrt.future";
    
      let description = [{
        Await a tensor from a !mlrt.future.
    
        $future: A value of type !mlrt.future. The underlying value must be a tensorflow tensor.
    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. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

                get() = objectType
    
            override val configuredType: DataTypeRef
                get() = returnValueType
        }
    
        @Serializable
        @SerialName("pure")
        data class DefaultPure(override val returnValueType: DataTypeRef) : Pure
    
        /** Implementations for [ConfigureBlockRequirement] */
        data object DefaultConfigureBlockRequirement {
            @Serializable
            @SerialName("notAllowed")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    // (where the operand and result type are not quantized) at all points where
    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def quantfork_QuantizeCastOp : quantfork_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

    // tf_mlrt.tf_await returns a tensorflow Tensor. It is a fake op that is only
    // used during parallelization and has no runtime implementation.
    def TFAwaitOp: TensorflowMlrt_Op<"tf_await", [Pure, TFRT_CostFunctionInterface, TFRT_FixedCost<1>]> {
      let summary = "Await a tensor from a !mlrt.future";
    
      let description = [{
        Await a tensor from a !mlrt.future.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top