Ambit demo
In-Memory Accelerator for Bulk Bitwise Operations Using Commodity DRAM Technology
Usage
Example usage of the Bitset
class:
#include "ambit/bitset.h"
using namespace Ambit;
int32 main()
{
Bitset<1024> x, y, z;
x &= y;
z = x ^ y;
return 0;
}