mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
a615eb5a75
taco: change python to python3 taco: fix python call taco: pass python as null default taco: add llvmPackages for darwin
14 lines
554 B
Diff
14 lines
554 B
Diff
diff --git a/test/tests-tensor_types.cpp b/test/tests-tensor_types.cpp
|
|
index 39d1b30a..c507da81 100644
|
|
--- a/test/tests-tensor_types.cpp
|
|
+++ b/test/tests-tensor_types.cpp
|
|
@@ -45,7 +45,7 @@ TYPED_TEST_P(VectorTensorTest, types) {
|
|
ASSERT_EQ(t, a.getComponentType());
|
|
ASSERT_EQ(1, a.getOrder());
|
|
ASSERT_EQ(5, a.getDimension(0));
|
|
- map<vector<int>,TypeParam> vals = {{{0}, 1.0}, {{2}, 2.0}};
|
|
+ map<vector<int>,TypeParam> vals = {{{0}, (TypeParam)1.0}, {{2}, (TypeParam)2.0}};
|
|
for (auto& val : vals) {
|
|
a.insert(val.first, val.second);
|
|
}
|