GPU_VIPER.py (11670:6ce719503eae) GPU_VIPER.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:

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

385 help = "tcc assoc")
386 parser.add_option("--tcp-size", type = 'string', default = '16kB',
387 help = "tcp size")
388 parser.add_option("--tcp-assoc", type = 'int', default = 16,
389 help = "tcp assoc")
390 parser.add_option("--noL1", action = "store_true", default = False,
391 help = "bypassL1")
392
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:

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

385 help = "tcc assoc")
386 parser.add_option("--tcp-size", type = 'string', default = '16kB',
387 help = "tcp size")
388 parser.add_option("--tcp-assoc", type = 'int', default = 16,
389 help = "tcp assoc")
390 parser.add_option("--noL1", action = "store_true", default = False,
391 help = "bypassL1")
392
393def create_system(options, full_system, system, dma_devices, ruby_system):
393def create_system(options, full_system, system, dma_devices, bootmem,
394 ruby_system):
394 if buildEnv['PROTOCOL'] != 'GPU_VIPER':
395 panic("This script requires the GPU_VIPER protocol to be built.")
396
397 cpu_sequencers = []
398
399 #
400 # The ruby network creation expects the list of nodes in the system to be
401 # consistent with the NetDest list. Therefore the l1 controller nodes

--- 273 unchanged lines hidden ---
395 if buildEnv['PROTOCOL'] != 'GPU_VIPER':
396 panic("This script requires the GPU_VIPER protocol to be built.")
397
398 cpu_sequencers = []
399
400 #
401 # The ruby network creation expects the list of nodes in the system to be
402 # consistent with the NetDest list. Therefore the l1 controller nodes

--- 273 unchanged lines hidden ---