mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-06-30 03:17:12 +00:00
109 lines
3.6 KiB
C++
109 lines
3.6 KiB
C++
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "kompute/Kompute.hpp"
|
|
#include "kompute/logger/Logger.hpp"
|
|
|
|
TEST(TestManager, EndToEndOpMultEvalFlow)
|
|
{
|
|
kp::Manager mgr;
|
|
|
|
std::shared_ptr<kp::TensorT<float>> tensorLHS = mgr.tensor({ 0, 1, 2 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorRHS = mgr.tensor({ 2, 4, 6 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorOutput = mgr.tensor({ 0, 0, 0 });
|
|
|
|
std::vector<std::shared_ptr<kp::Tensor>> params = { tensorLHS,
|
|
tensorRHS,
|
|
tensorOutput };
|
|
|
|
mgr.sequence()
|
|
->eval<kp::OpTensorSyncDevice>(params)
|
|
->eval<kp::OpMult>(params, mgr.algorithm())
|
|
->eval<kp::OpTensorSyncLocal>(params);
|
|
|
|
EXPECT_EQ(tensorOutput->vector(), std::vector<float>({ 0, 4, 12 }));
|
|
}
|
|
|
|
TEST(TestManager, EndToEndOpMultSeqFlow)
|
|
{
|
|
kp::Manager mgr;
|
|
|
|
std::shared_ptr<kp::TensorT<float>> tensorLHS = mgr.tensor({ 0, 1, 2 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorRHS = mgr.tensor({ 2, 4, 6 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorOutput = mgr.tensor({ 0, 0, 0 });
|
|
|
|
std::vector<std::shared_ptr<kp::Tensor>> params = { tensorLHS,
|
|
tensorRHS,
|
|
tensorOutput };
|
|
|
|
mgr.sequence()
|
|
->record<kp::OpTensorSyncDevice>(params)
|
|
->record<kp::OpMult>(params, mgr.algorithm())
|
|
->record<kp::OpTensorSyncLocal>(params)
|
|
->eval();
|
|
|
|
EXPECT_EQ(tensorOutput->vector(), std::vector<float>({ 0, 4, 12 }));
|
|
}
|
|
|
|
TEST(TestManager, TestMultipleSequences)
|
|
{
|
|
kp::Manager mgr;
|
|
|
|
std::shared_ptr<kp::TensorT<float>> tensorLHS = mgr.tensor({ 0, 1, 2 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorRHS = mgr.tensor({ 2, 4, 6 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorOutput = mgr.tensor({ 0, 0, 0 });
|
|
|
|
std::vector<std::shared_ptr<kp::Tensor>> params = { tensorLHS,
|
|
tensorRHS,
|
|
tensorOutput };
|
|
|
|
mgr.sequence()->eval<kp::OpTensorSyncDevice>(params);
|
|
mgr.sequence()->eval<kp::OpMult>(params, mgr.algorithm());
|
|
mgr.sequence()->eval<kp::OpTensorSyncLocal>(params);
|
|
|
|
EXPECT_EQ(tensorOutput->vector(), std::vector<float>({ 0, 4, 12 }));
|
|
}
|
|
|
|
TEST(TestManager, TestDeviceProperties)
|
|
{
|
|
kp::Manager mgr;
|
|
const vk::PhysicalDeviceProperties properties = mgr.getDeviceProperties();
|
|
EXPECT_GT(properties.deviceName.size(), 0);
|
|
}
|
|
|
|
TEST(TestManager, TestListDevices)
|
|
{
|
|
kp::Manager mgr;
|
|
const std::vector<vk::PhysicalDevice> devices = mgr.listDevices();
|
|
EXPECT_GT(devices.size(), 0);
|
|
EXPECT_GT(devices[0].getProperties().deviceName.size(), 0);
|
|
}
|
|
|
|
TEST(TestManager, TestClearDestroy)
|
|
{
|
|
kp::Manager mgr;
|
|
|
|
// Running within scope to run clear
|
|
{
|
|
std::shared_ptr<kp::TensorT<float>> tensorLHS = mgr.tensor({ 0, 1, 2 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorRHS = mgr.tensor({ 2, 4, 6 });
|
|
std::shared_ptr<kp::TensorT<float>> tensorOutput =
|
|
mgr.tensor({ 0, 0, 0 });
|
|
|
|
std::vector<std::shared_ptr<kp::Tensor>> params = { tensorLHS,
|
|
tensorRHS,
|
|
tensorOutput };
|
|
|
|
mgr.sequence()->eval<kp::OpTensorSyncDevice>(params);
|
|
mgr.sequence()->eval<kp::OpMult>(params, mgr.algorithm());
|
|
mgr.sequence()->eval<kp::OpTensorSyncLocal>(params);
|
|
|
|
EXPECT_EQ(tensorOutput->vector(), std::vector<float>({ 0, 4, 12 }));
|
|
}
|
|
|
|
mgr.clear();
|
|
|
|
mgr.destroy();
|
|
}
|