summaryrefslogtreecommitdiff
path: root/src/intersim/pim.hpp
blob: 1ce5535d78f0f68519e4a616d50242a452150c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _PIM_HPP_
#define _PIM_HPP_

#include "allocator.hpp"

class PIM : public DenseAllocator {
   int _PIM_iter;

   int *_grants;
public:
   PIM( const Configuration &config,
        Module *parent, const string& name,
        int inputs, int outputs );

   ~PIM( );

   void Allocate( );
};

#endif