File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -443,8 +443,8 @@ TEST(workspaces, DISABLED_tile_dotProduct_1) {
443443 // would result in scattering.
444444 int N = 1024 ;
445445 Tensor<double > A (" A" );
446- Tensor<double > B (" B" , {N}, {Dense});
447- Tensor<double > C (" C" , {N}, {Dense});
446+ Tensor<double > B (" B" , {N}, Format ( {Dense}) );
447+ Tensor<double > C (" C" , {N}, Format ( {Dense}) );
448448
449449 for (int i = 0 ; i < N; i++) {
450450 B.insert ({i}, (double ) i);
@@ -497,8 +497,8 @@ TEST(workspaces, DISABLED_tile_dotProduct_2) {
497497
498498 int N = 1024 ;
499499 Tensor<double > A (" A" );
500- Tensor<double > B (" B" , {N}, {Dense});
501- Tensor<double > C (" C" , {N}, {Dense});
500+ Tensor<double > B (" B" , {N}, Format ( {Dense}) );
501+ Tensor<double > C (" C" , {N}, Format ( {Dense}) );
502502
503503 for (int i = 0 ; i < N; i++) {
504504 B.insert ({i}, (double ) i);
You can’t perform that action at this time.
0 commit comments