You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Floating-point parameters (like a scalar scaling factor) were more or less an afterthought in CK-NNTest. Therefore, this area is still rather buggy.
For example, with two GEMM parameters alpha=1.0 and beta=0.0, the following fails:
$ ck run program:gemm-pytorch --dataset_file=shape-1024-1024-1024-1.0-0
...
CK error: [program] problem opening json file=/homes/anton/CK/ck-nntest/dataset/tensor-gemm-0001/shape-1024-1024-1024-1.json ([Errno 2] No such file or directory: '/homes/anton/CK/ck-nntest/dataset/tensor-gemm-0001/shape-1024-1024-1024-1.json')!
while two equivalent representations work fine:
$ ck run program:gemm-pytorch --dataset_file=shape-1024-1024-1024-1.0-0.0
...
(checking output correctness ...)
* Searching directory with reference output "default-f4407088898d5f10-1.0-0.0-1024-1024-1024-1-42" ...
* Reference output found - validating ...
* File: /disk1/homes/anton/CK/local/program.output/program-uid-6ac244466493cbcd/default-f4407088898d5f10-1.0-0.0-1024-1024-1024-1-42
Validated successfully!
$ ck run program:gemm-pytorch --dataset_file=shape-1024-1024-1024-1-0
...
(checking output correctness ...)
* Searching directory with reference output "default-f4407088898d5f10-1.0-0.0-1024-1024-1024-1-42" ...
* Reference output found - validating ...
* File: /disk1/homes/anton/CK/local/program.output/program-uid-6ac244466493cbcd/default-f4407088898d5f10-1.0-0.0-1024-1024-1024-1-42
Validated successfully!
Floating-point parameters (like a scalar scaling factor) were more or less an afterthought in CK-NNTest. Therefore, this area is still rather buggy.
For example, with two GEMM parameters
alpha=1.0
andbeta=0.0
, the following fails:while two equivalent representations work fine:
The dataset files are completely identical:
The text was updated successfully, but these errors were encountered: