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 committed Nov 22, 2018
1 parent 3db3fa3 commit 48caa88
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 97 deletions.
Expand Up @@ -24,9 +24,9 @@


public class ReductionFilesHelper { public class ReductionFilesHelper {


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


static Optional<File> getLatestReductionImage( static Optional<File> getLatestReductionImage(
Expand Down

0 comments on commit 48caa88

Please sign in to comment.