MCPcopy Create free account
hub / github.com/ml-explore/mlx / Function

Method Function

mlx/export.cpp:533–541  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

531 FunctionTable(bool shapeless = false) : shapeless(shapeless) {};
532 struct Function {
533 Function(
534 std::vector<std::string> kwarg_keys,
535 std::vector<array> inputs,
536 std::vector<array> outputs,
537 std::vector<array> tape)
538 : kwarg_keys(std::move(kwarg_keys)),
539 inputs(std::move(inputs)),
540 outputs(std::move(outputs)),
541 tape(std::move(tape)) {}
542
543 std::vector<std::string> kwarg_keys;
544 std::vector<array> inputs;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected