9 Commits

Author SHA1 Message Date
Ulf Wiger 720f5600d4 Remove hut, use logger directly, with domain 2024-01-29 15:47:19 +01:00
Dincho Todorov c788653d17 Switch to OTP23 (#23) 2022-08-29 14:24:34 +03:00
Dincho Todorov c6b6a6daf4 Merge pull request #22 from aeternity/bump_aecuckoo_ref
Bump aecuckoo reference
2022-04-07 21:20:30 +03:00
Hans Svensson 86ef29458d Bump aecuckoo reference 2022-04-07 20:15:51 +02:00
seanhinde 33be529b68 Merge pull request #21 from aeternity/update-enacl-for-m1-mac
Update enacl version for m1 macs
2021-11-24 17:12:50 +01:00
Sean Hinde 95a1efc84d Also update aecuckoo dep 2021-11-23 22:55:42 +01:00
Sean Hinde 0afe99755c Update enacl version for m1 macs 2021-11-23 22:33:30 +01:00
seanhinde ccdf1ef040 Merge pull request #20 from aeternity/update-enacl-api
Update to latest enacl with updated API
2021-11-02 09:40:56 +01:00
Sean Hinde 0ff27e51c7 Update to latest enacle with updated API 2021-11-01 18:31:59 +01:00
6 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ version: 2.1
executors:
aebuilder:
docker:
- image: aeternity/builder
- image: aeternity/builder:bionic-otp23
user: builder
working_directory: ~/src
+2 -3
View File
@@ -1,5 +1,4 @@
{deps, [
{hut, "1.3.0"},
%% Cuckoo prebuilt CUDA binaries.
{aecuckooprebuilt,
@@ -8,11 +7,11 @@
%% Cuckoo CPU miners (not prebuilt).
{aecuckoo, {git, "https://github.com/aeternity/aecuckoo.git",
{ref, "a1bff574dd0a965d3f9f2e23f980bbead8b4638d"}}},
{ref, "996ffcd"}}},
%% This is used just in one place, just to get blake2b_256 hash.
{enacl, {git, "https://github.com/aeternity/enacl.git",
{ref, "26180f4"}}}
{ref, "67fceef"}}}
]}.
{plugins, [{rebar_aecuckooprebuilt_dep, {git, "https://github.com/aeternity/rebar3-cuckoo-prebuilt-plugin.git",
+6 -7
View File
@@ -1,7 +1,7 @@
{"1.1.0",
{"1.2.0",
[{<<"aecuckoo">>,
{git,"https://github.com/aeternity/aecuckoo.git",
{ref,"a1bff574dd0a965d3f9f2e23f980bbead8b4638d"}},
{ref,"996ffcdb336f1c2254ea8e1b1a657b05b7ea4a81"}},
0},
{<<"aecuckooprebuilt">>,
{aecuckooprebuilt_app_with_priv_from_git,
@@ -10,10 +10,9 @@
0},
{<<"enacl">>,
{git,"https://github.com/aeternity/enacl.git",
{ref,"26180f42c0b3a450905d2efd8bc7fd5fd9cece75"}},
0},
{<<"hut">>,{pkg,<<"hut">>,<<"1.3.0">>},0}]}.
{ref,"67fceef42c0d055570f2e67b571f8d1f8de2f204"}},
0}]}.
[
{pkg_hash,[
{<<"hut">>, <<"71F2F054E657C03F959CF1ACC43F436EA87580696528CA2A55C8AFB1B06C85E7">>}]}
{pkg_hash,[]},
{pkg_hash_ext,[]}
].
-1
View File
@@ -6,7 +6,6 @@
[kernel,
stdlib,
enacl,
hut,
aecuckoo,
aecuckooprebuilt
]},
+1 -2
View File
@@ -14,6 +14,5 @@
-spec hash(hashable()) -> hash().
hash(Bin) ->
{ok, Hash} = enacl:generichash(?HASH_BYTES_SIZE, Bin),
Hash.
enacl:generichash(?HASH_BYTES_SIZE, Bin).
+16 -12
View File
@@ -53,9 +53,13 @@
]).
-endif.
-include_lib("hut/include/hut.hrl").
-include("aeminer.hrl").
-define(logger_meta, #{domain => [gaj, pow_cuckoo]}).
-define(debug(Fmt, Args) , logger:debug(Fmt, Args, ?logger_meta)).
-define(info(Fmt, Args) , logger:info(Fmt, Args, ?logger_meta)).
-define(warning(Fmt, Args), logger:warning(Fmt, Args, ?logger_meta)).
-type hashable() :: aeminer_blake2b_256:hashable().
-type hash() :: aeminer_blake2b_256:hash().
@@ -186,13 +190,13 @@ generate(Data, Target, Nonce, Config, Instance) when
{ok, {nonce(), solution()}} | {error, no_solution} | {error, {runtime, term()}}.
generate_from_hash(Hash, Target, Nonce, Config, Instance) ->
Hash64 = base64:encode_to_string(Hash),
?log(debug, "Generating solution for data hash ~p and nonce ~p with target ~p.",
?debug("Generating solution for data hash ~p and nonce ~p with target ~p.",
[Hash, Nonce, Target]),
case generate_int(Hash64, Nonce, Target, Config, Instance) of
{ok, Nonce1, Soln} ->
{ok, {Nonce1, Soln}};
{error, no_value} ->
?log(debug, "No cuckoo solution found", []),
?debug("No cuckoo solution found", []),
{error, no_solution};
{error, Rsn} ->
%% Exec failed (segfault, not found, etc.): let miner decide
@@ -262,7 +266,7 @@ generate_int(Hash, Nonce, Target, MinerBinDir, MinerBin, MinerExtraArgs,
#config{repeats = Repeats0, edge_bits = EdgeBits}) ->
Repeats = integer_to_list(Repeats0),
Args = ["-h", Hash, "-n", integer_to_list(Nonce), "-r", Repeats | string:tokens(MinerExtraArgs, " ")],
?log(info, "Executing cmd '~s ~s'", [MinerBin, lists:concat(lists:join(" ", Args))]),
?info("Executing cmd '~s ~s'", [MinerBin, lists:concat(lists:join(" ", Args))]),
Old = process_flag(trap_exit, true),
try exec_run(MinerBin, MinerBinDir, Args) of
{ok, Port, OsPid} ->
@@ -340,7 +344,7 @@ verify_proof_(Header, Solution, EdgeBits) ->
end
catch
throw:{error, Rsn} ->
?log(info, "Proof verification failed for ~p: ~p", [Solution, Rsn]),
?info("Proof verification failed for ~p: ~p", [Solution, Rsn]),
false
end.
@@ -495,20 +499,20 @@ parse_generation_result(["Solution" ++ NonceValuesStr | Rest],
stop_execution(OsPid),
case parse_nonce_str(NonceStr) of
{ok, Nonce} ->
?log(debug, "Solution found: ~p", [Soln]),
?debug("Solution found: ~p", [Soln]),
{ok, Nonce, Soln};
Err = {error, _} ->
?log(debug, "Bad nonce: ~p", [Err]),
?debug("Bad nonce: ~p", [Err]),
Err
end;
{N, _} when N /= ?SOLUTION_SIZE ->
?log(debug, "Solution has wrong length (~p) should be ~p", [N, ?SOLUTION_SIZE]),
?debug("Solution has wrong length (~p) should be ~p", [N, ?SOLUTION_SIZE]),
%% No nonce in solution, old miner exec?
stop_execution(OsPid),
{error, bad_miner};
{_, false} ->
%% failed to meet target: go on, we may find another solution
?log(debug, "Failed to meet target (~p)", [Target]),
?debug("Failed to meet target (~p)", [Target]),
parse_generation_result(Rest, State)
end;
parse_generation_result([_Msg | T], State) ->
@@ -526,7 +530,7 @@ parse_nonce_str(S) ->
%%------------------------------------------------------------------------------
stop_execution(OsPid) ->
exec_kill(OsPid),
?log(debug, "Mining OS process ~p stopped", [OsPid]),
?debug("Mining OS process ~p stopped", [OsPid]),
ok.
%%------------------------------------------------------------------------------
@@ -558,10 +562,10 @@ exec_run(Cmd, Dir, Args) ->
Port = erlang:open_port(PortName, PortSettings),
case erlang:port_info(Port, os_pid) of
{os_pid, OsPid} ->
?log(debug, "External mining process started with OS pid ~p", [OsPid]),
?debug("External mining process started with OS pid ~p", [OsPid]),
{ok, Port, OsPid};
undefined ->
?log(warning, "External mining process finished before ~p could acquire the OS pid", [?MODULE]),
?warning("External mining process finished before ~p could acquire the OS pid", [?MODULE]),
{ok, Port, undefined}
end
catch