25#include "neml2/tensors/user_tensors/UserBatchTensor.h"
35 options.
doc() =
"Construct a BatchTensor from a vector of values. The vector will be reshaped "
36 "according to the specified batch and base shapes.";
38 options.
set<std::vector<Real>>(
"values");
39 options.
set(
"values").doc() =
"Values in this (flattened) tensor";
42 options.
set(
"batch_shape").doc() =
"Batch shape";
45 options.
set(
"base_shape").doc() =
"Base shape";
56 auto vals = options.
get<std::vector<Real>>(
"values");
58 if (
vals.size() ==
size_t(
this->base_storage()))
61 this->
index_put_({torch::indexing::Ellipsis},
flat.reshape(this->sizes()));
66 " must equal to either the base storage size ",
68 " or the total storage size ",
TorchShapeRef base_sizes() const
Return the base size.
Definition BatchTensorBase.cxx:163
Definition BatchTensor.h:32
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:59
const std::string & doc() const
A readonly reference to the option set's docstring.
Definition OptionSet.h:91
const T & get(const std::string &) const
Definition OptionSet.h:422
T & set(const std::string &)
Definition OptionSet.h:436
Create raw BatchTensor from the input file.
Definition UserBatchTensor.h:37
UserBatchTensor(const OptionSet &options)
Construct a new UserBatchTensor object.
Definition UserBatchTensor.cxx:50
static OptionSet expected_options()
Definition UserBatchTensor.cxx:32
Definition UserTensor.h:33
static OptionSet expected_options()
Definition UserTensor.cxx:30
TorchSize storage_size(TorchShapeRef shape)
The flattened storage size of a tensor with given shape.
Definition utils.cxx:32
Definition CrossRef.cxx:32
const torch::TensorOptions default_tensor_options()
Definition types.cxx:30
std::vector< TorchSize > TorchShape
Definition types.h:36
void neml_assert(bool assertion, Args &&... args)
Definition error.h:73