Changeset 814 for soft/giet_vm/giet_python/mapping.py
- Timestamp:
- Apr 1, 2016, 2:22:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/mapping.py
r762 r814 165 165 ram_size = 0 ): # RAM size per cluster (bytes) 166 166 167 assert ( x_size <= (1<< X_WIDTH) )168 assert ( y_size <= (1<< Y_WIDTH) )169 assert ( nprocs <= (1<< P_WIDTH) )167 assert ( x_size <= (1<<x_width) ) 168 assert ( y_size <= (1<<y_width) ) 169 assert ( nprocs <= (1<<p_width) ) 170 170 171 171 self.signature = MAPPING_SIGNATURE
Note: See TracChangeset
for help on using the changeset viewer.