Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for I64Attr (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

      }];
    
      let arguments = (ins
        AnyType:$data,
        TensorOf<[I32]>:$index,
        // Optional extra control inputs.
        Variadic<TfeControlType>:$controlInputs,
        I64Attr:$num_outs
      );
    
      let results = (outs
        Variadic<AnyType>:$outputs,
        TfeControlType: $control
      );
    }
    
    def TfExecutor_MergeOp : TfExecutor_Op<"Merge",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.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 GetResourceOp : TensorflowMlrt_Op<"get_resource", []> {
      let summary = "get a tensor in resource array";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def ValueToVariadic: NativeCodeCall<"SmallVector<Value, 1>{$0}">;
    def : Pat<(TF_AllToAllOp AnyRankedTensor:$input, (ConstantLikeMatcher ElementsAttr:$group_assignment), I64Attr:$concat_dimension, $split_dimension, $split_count),
              (MHLO_AllToAllOp (ValueToVariadic $input), $split_dimension, $concat_dimension, $split_count, (CastElementsToI64Elements $group_assignment), (NullChannelHandleAttr))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    lower bound 0 is included in the range, while the upper bound 1 is excluded.
      }];
    
      let arguments = (ins
        TFL_I32Tensor:$shape,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed2
      );
    
       let results = (outs
        TFL_TensorOf<[F32]>:$out);
      let hasOptions = 1;
      let customOption = "RandomOptions";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

    }
    
    // I32Attr already returns an int as required by flatbuffer builders.
    static int ConvertI32AttrForOptionWriter(
        int i, flatbuffers::FlatBufferBuilder* builder) {
      return i;
    }
    
    // I64Attr already returns a int64_t as required by flatbuffer builders.
    static int64_t ConvertI64AttrForOptionWriter(
        int64_t i, flatbuffers::FlatBufferBuilder* builder) {
      return i;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
Back to top