Deleted Added
sdiff udiff text old ( 11308:7d8836fd043d ) new ( 11523:81332eb10367 )
full compact
1/*
2 * Copyright (c) 2014-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 {
386 // TODO set to max(lastCommand+1, curTick())
387 return returnQueue.empty() ? curTick() : returnQueue.back().first;
388 }
389
390 void
391 setParent(ComputeUnit *x_parent);
392
393 // accessors
394 ComputeUnit *
395 getParent() const
396 {
397 return parent;
398 }
399
400 std::string

--- 109 unchanged lines hidden ---