Added vcpkg file and unix build commands

This commit is contained in:
Alejandro Saucedo 2020-08-29 09:14:40 +01:00
parent ae68570512
commit 0d4a81cfe5
4 changed files with 84 additions and 32 deletions

View file

@ -6,6 +6,7 @@
TEST_CASE("Tensor should have same vector as initialised") {
std::vector<uint32_t> vec{0,1,2};
kp::Tensor tensor(vec);
REQUIRE( tensor.size() == vec.size() );
REQUIRE( tensor.data() == vec );
}