Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for validate_indices (0.3 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                                  /*use_32bit=*/true_attr);
        rewriter.replaceOpWithNewOp<TF::GatherOp>(
            op, op.getType(), shape, CreateI32SplatConst(loc, &rewriter, {}, 0),
            /*validate_indices=*/true_attr);
        return success();
      }
    };
    
    struct ConvertTensorListStack
        : public OpConversionPattern<TF::TensorListStackOp> {
      using OpConversionPattern::OpConversionPattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _validate_indices = _o->validate_indices;
      return tflite::CreateSparseToDenseOptions(
          _fbb,
          _validate_indices);
    }
    
    inline EqualOptionsT *EqualOptions::UnPack(const ::flatbuffers::resolver_function_t *_resolver) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    scalar, all sparse indices are set to this single value.
    
    Indices should be sorted in lexicographic order, and indices must not
    contain any repeats. If `validate_indices` is true, these properties
    are checked during execution.
      }];
    
      let arguments = (ins
        TFL_I32OrI64Tensor:$sparse_indices,
        TFL_I32OrI64Tensor:$output_shape,
    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/tensorflow/ir/tf_generated_ops.td

        output[i, ..., j, :, ... :] = params[indices[i, ..., j], :, ..., :]
    ```
    
    If `indices` is a permutation and `len(indices) == params.shape[0]` then
    this operation will permute `params` accordingly.
    
    `validate_indices`: DEPRECATED. If this operation is assigned to CPU, values in
    `indices` are always validated to be within range. If assigned to GPU,
    out-of-bound indices result in safe but unspecified behavior, which may include
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top