summaryrefslogtreecommitdiff
path: root/modules/remote-hip/examples/hip_device_info.cpp
blob: ed62e93b77b750badd5aa9d543a7459a6636a642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}