summaryrefslogtreecommitdiff
path: root/modules/remote-hip/examples/hip_device_info.cpp
blob: 0a0adc713793903e5a2b73e9b1964f1faa3660e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <sstream>

#include "../c++/remote.hpp"
#include "../c++/transfer.hpp"

#include <iostream>

int main(){
	using namespace saw;

	remote<rmt::Hip> rmt;

	std::cout<<"Remote Info:\n"<<rmt.get_info()<<std::endl;

	return 0;
}