Arrayjit.Assignments
The code for operating on n-dimensional arrays.
module Lazy = Utils.Lazy
module Tn = Tnode
val sexp_of_buffer : buffer -> Sexplib0.Sexp.t
type fetch_op =
| Constant of Base.float
| Imported of Ops.global_identifier
| Slice of {
batch_idx : Indexing.static_symbol;
sliced : Tn.t;
}
| Embed_symbol of Indexing.static_symbol
Resets a array by performing the specified computation or data fetching.
and t =
| Noop
| Seq of t * t
| Block_comment of Base.string * t
Same as the given code, with a comment.
*)| Accum_ternop of {
initialize_neutral : Base.bool;
accum : Ops.binop;
op : Ops.ternop;
lhs : Tn.t;
rhs1 : buffer;
rhs2 : buffer;
rhs3 : buffer;
projections : Indexing.projections Lazy.t;
}
| Accum_binop of {
initialize_neutral : Base.bool;
accum : Ops.binop;
op : Ops.binop;
lhs : Tn.t;
rhs1 : buffer;
rhs2 : buffer;
projections : Indexing.projections Lazy.t;
}
| Accum_unop of {
initialize_neutral : Base.bool;
accum : Ops.binop;
op : Ops.unop;
lhs : Tn.t;
rhs : buffer;
projections : Indexing.projections Lazy.t;
}
| Fetch of {
}
val sexp_of_fetch_op : fetch_op -> Sexplib0.Sexp.t
val sexp_of_t : t -> Sexplib0.Sexp.t
Computations based on assignments. Note: the arrayjit
library makes use of, but does not produce nor verify the embedded_nodes
associated to some given asgns
.
val sexp_of_comp : comp -> Sexplib0.Sexp.t
val empty_comp : comp
val get_name_exn : t -> Base.String.t
val is_total :
initialize_neutral:Base.bool ->
projections:Indexing.projections ->
Base.bool
Returns materialized nodes in the sense of Tnode.is_in_context_force
. NOTE: it must be called after compilation; otherwise, it will disrupt memory mode inference.
val to_low_level : t -> Low_level.t
val is_noop : t -> bool
val fprint_hum :
?name:Base.string ->
?static_indices:Indexing.static_symbol Base.list ->
unit ->
Stdlib.Format.formatter ->
t ->
unit
val lower :
unoptim_ll_source:Stdlib.Format.formatter Base.option ->
ll_source:Stdlib.Format.formatter Base.option ->
cd_source:Stdlib.Format.formatter option ->
name:Base.string ->
Indexing.static_symbol Base.list ->
t ->
Low_level.optimized