GPU_VIPER_Baseline.py (11670:6ce719503eae) GPU_VIPER_Baseline.py (12598:b80b2d9a251b)
1#
2# Copyright (c) 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:

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

368 parser.add_option("--sampler-sets", type = "int", default = 1024)
369 parser.add_option("--sampler-assoc", type = "int", default = 16)
370 parser.add_option("--sampler-counter", type = "int", default = 512)
371 parser.add_option("--noL1", action = "store_true", default = False,
372 help = "bypassL1")
373 parser.add_option("--noL2", action = "store_true", default = False,
374 help = "bypassL2")
375
1#
2# Copyright (c) 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:

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

368 parser.add_option("--sampler-sets", type = "int", default = 1024)
369 parser.add_option("--sampler-assoc", type = "int", default = 16)
370 parser.add_option("--sampler-counter", type = "int", default = 512)
371 parser.add_option("--noL1", action = "store_true", default = False,
372 help = "bypassL1")
373 parser.add_option("--noL2", action = "store_true", default = False,
374 help = "bypassL2")
375
376def create_system(options, full_system, system, dma_devices, ruby_system):
376def create_system(options, full_system, system, dma_devices, bootmem,
377 ruby_system):
377 if buildEnv['PROTOCOL'] != 'GPU_VIPER_Baseline':
378 panic("This script requires the" \
379 "GPU_VIPER_Baseline protocol to be built.")
380
381 cpu_sequencers = []
382
383 #
384 # The ruby network creation expects the list of nodes in the system to be

--- 204 unchanged lines hidden ---
378 if buildEnv['PROTOCOL'] != 'GPU_VIPER_Baseline':
379 panic("This script requires the" \
380 "GPU_VIPER_Baseline protocol to be built.")
381
382 cpu_sequencers = []
383
384 #
385 # The ruby network creation expects the list of nodes in the system to be

--- 204 unchanged lines hidden ---