Deleted Added
sdiff udiff text old ( 13731:67cd980cb20f ) new ( 13885:d10ea5e56cb0 )
full compact
1# Copyright (c) 2011-2015 Advanced Micro Devices, Inc.
2# All rights reserved.
3#
4# For use for simulation and test purposes only
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8#

--- 485 unchanged lines hidden (view full) ---

494 cp_cntrl.responseToCore = MessageBuffer()
495 cp_cntrl.responseToCore.slave = ruby_system.network.master
496
497 cp_cntrl.mandatoryQueue = MessageBuffer()
498 cp_cntrl.triggerQueue = MessageBuffer(ordered = True)
499
500 cpuCluster.add(cp_cntrl)
501
502 gpuCluster = None
503 if hasattr(options, 'bw_scalor') and options.bw_scalor > 0:
504 gpuCluster = Cluster(extBW = crossbar_bw, intBW = crossbar_bw)
505 else:
506 gpuCluster = Cluster(extBW = 8, intBW = 8) # 16 GB/s
507 for i in range(options.num_compute_units):
508
509 tcp_cntrl = TCPCntrl(TCC_select_num_bits = TCC_bits,

--- 167 unchanged lines hidden ---