Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STASH: randn_out #9553

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions kernels/portable/cpu/op_randn.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/

#include <executorch/runtime/kernel/kernel_includes.h>
#include <executorch/runtime/platform/assert.h>

#include <random>
#include <type_traits>

namespace torch::executor::native {

using executorch::aten::Tensor;

Tensor& randn_out(
KernelRuntimeContext& context,
IntArrayRef size,
Tensor& out) {
(void)context;

// Resize for dynamic shape
ET_KERNEL_CHECK_MSG(
context,
resize_tensor(out, size) == Error::Ok,
InvalidArgument,
out,
"Failed to resize output tensor.");

std::default_random_engine gen;
ET_SWITCH_FLOATHBF16_TYPES(out.scalar_type(), ctx, "randn.out", CTYPE, [&]() {
using dist_type = std::conditional_t<c10::is_reduced_floating_point_v<CTYPE>, float, CTYPE>;
std::normal_distribution<dist_type> dist;
std::generate_n(out.mutable_data_ptr<CTYPE>(), out.numel(), [&]() {
return static_cast<CTYPE>(dist(gen));
});
});
return out;
}

} // namespace torch::executor::native
6 changes: 5 additions & 1 deletion kernels/portable/functions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@
- arg_meta: null
kernel_name: torch::executor::div_out_mode


- op: embedding.out
kernels:
- arg_meta: null
Expand Down Expand Up @@ -697,6 +696,11 @@
- arg_meta: null
kernel_name: torch::executor::prod_out

- op: randn.out
kernels:
- arg_meta: null
kernel_name: torch::executor::randn_out

- op: reciprocal.out
kernels:
- arg_meta: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,10 @@ ATEN_OPS = (
"//executorch/kernels/portable/cpu/util:reduce_util",
],
),
op_target(
name = "op_randn",
deps = [],
),
op_target(
name = "op_reciprocal",
deps = [
Expand Down
Loading