GPU_RfO.py (12065:e3e51756dfef) GPU_RfO.py (12598:b80b2d9a251b)
1#
2# Copyright (c) 2011-2015 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# For use for simulation and test purposes only
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions are met:

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

422 help="TCC latency")
423 parser.add_option("--tcc-size", type='string', default='256kB',
424 help="agregate tcc size")
425 parser.add_option("--tcp-size", type='string', default='16kB',
426 help="tcp size")
427 parser.add_option("--tcc-dir-factor", type='int', default=4,
428 help="TCCdir size = factor *(TCPs + TCC)")
429
1#
2# Copyright (c) 2011-2015 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# For use for simulation and test purposes only
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions are met:

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

422 help="TCC latency")
423 parser.add_option("--tcc-size", type='string', default='256kB',
424 help="agregate tcc size")
425 parser.add_option("--tcp-size", type='string', default='16kB',
426 help="tcp size")
427 parser.add_option("--tcc-dir-factor", type='int', default=4,
428 help="TCCdir size = factor *(TCPs + TCC)")
429
430def create_system(options, full_system, system, dma_devices, ruby_system):
430def create_system(options, full_system, system, dma_devices, bootmem,
431 ruby_system):
431 if buildEnv['PROTOCOL'] != 'GPU_RfO':
432 panic("This script requires the GPU_RfO protocol to be built.")
433
434 cpu_sequencers = []
435
436 #
437 # The ruby network creation expects the list of nodes in the system to be
438 # consistent with the NetDest list. Therefore the l1 controller nodes

--- 321 unchanged lines hidden ---
432 if buildEnv['PROTOCOL'] != 'GPU_RfO':
433 panic("This script requires the GPU_RfO protocol to be built.")
434
435 cpu_sequencers = []
436
437 #
438 # The ruby network creation expects the list of nodes in the system to be
439 # consistent with the NetDest list. Therefore the l1 controller nodes

--- 321 unchanged lines hidden ---