GPUCoalescer.py (13665:9c7fe3811b88) GPUCoalescer.py (13974:af47a3ae0f6b)
1# Copyright (c) 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#

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

49 "Ownership coherence");
50
51 icache = Param.RubyCache("")
52 dcache = Param.RubyCache("")
53 deadlock_threshold = Param.Cycles(500000,
54 "max outstanding cycles for a request before " \
55 "deadlock/livelock declared")
56 garnet_standalone = Param.Bool(False, "")
1# Copyright (c) 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#

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

49 "Ownership coherence");
50
51 icache = Param.RubyCache("")
52 dcache = Param.RubyCache("")
53 deadlock_threshold = Param.Cycles(500000,
54 "max outstanding cycles for a request before " \
55 "deadlock/livelock declared")
56 garnet_standalone = Param.Bool(False, "")
57 dcache_hit_latency = Param.Cycles(1, "Data cache hit latency")