Skip to content

Commit

Permalink
Rename result directories (#127)
Browse files Browse the repository at this point in the history
* Rename reduction directory X_inv -> /reductions/X

* Rename result directory X_exp -> X

* Fix directory of reference reduction

* Fix checkstyle
  • Loading branch information
hevrard authored Nov 22, 2018
1 parent 3db3fa3 commit 48caa88
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 97 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

public class ReductionFilesHelper {

static File getReductionDir(String token, String shaderSet, String shader) {
return new File(WebUiConstants.WORKER_DIR + "/" + token + "/"
+ shaderSet + "_" + shader + "_inv");
static File getReductionDir(String token, String shaderSet, String variant) {
return new File(WebUiConstants.WORKER_DIR + "/" + token + "/" + shaderSet
+ "/reductions/" + variant);
}

static Optional<File> getLatestReductionImage(
Expand Down
Loading

0 comments on commit 48caa88

Please sign in to comment.