Packages

MLX machine learning framework bindings for Erlang

Current section

Files

Jump to
mlx src mlx_app.erl
Raw

src/mlx_app.erl

-module(mlx_app).
-behaviour(application).
-export([start/2, stop/1]).
-spec start(application:start_type(), term()) -> {ok, pid()} | {error, term()}.
-spec stop(term()) -> ok.
start(_StartType, _StartArgs) ->
mlx_sup:start_link().
stop(_State) ->
ok.