Skip to content

Commit 5e6575f

Browse files
committed
now julia should be fixes
1 parent 5ba2714 commit 5e6575f

4 files changed

Lines changed: 3 additions & 61 deletions

File tree

_helpers/helpers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function write_log(run, task, data, in_rows, question, out_rows, out_cols, solut
3232
timestamp=@sprintf("%0.6f", time())
3333
csv_verbose = false # hardcoded for now, TODO ENV["CSV_VERBOSE"] and print
3434
log = DataFrame(nodename=nodename, batch=batch, timestamp=timestamp, task=task, data=data, in_rows=in_rows, question=question, out_rows=out_rows, out_cols=out_cols, solution=solution, version=version, git=git, fun=fun, run=run, time_sec=time_sec, mem_gb=mem_gb, cache=uppercase(string(cache)), chk=chk, chk_time_sec=chk_time_sec, comment=comment, on_disk=uppercase(string(on_disk)), machine_type=machine_type)
35-
CSV.write(file, log, append=isfile(file))
35+
CSV.write(file, log, append=isfile(file), header=!isfile(file)))
3636
end;
3737

3838
function make_chk(x)

_helpers/helpersds.jl

Lines changed: 0 additions & 58 deletions
This file was deleted.

juliads/groupby-juliads.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using PooledArrays
1010
# Force Julia to precompile methods for common patterns
1111
IMD.warmup()
1212

13-
include("$(pwd())/_helpers/helpersds.jl");
13+
include("$(pwd())/_helpers/helpers.jl");
1414

1515
pkgmeta = getpkgmeta("InMemoryDatasets");
1616
ver = pkgmeta["version"];

juliads/join-juliads.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using Arrow
1111
# Force Julia to precompile methods for common patterns
1212
IMD.warmup()
1313

14-
include("$(pwd())/_helpers/helpersds.jl");
14+
include("$(pwd())/_helpers/helpers.jl");
1515

1616
pkgmeta = getpkgmeta("InMemoryDatasets");
1717
ver = pkgmeta["version"];

0 commit comments

Comments
 (0)