[SWDEV-442583] - Fix for hipMemset performance tests
Change-Id: Id4f0d82551aaad6b7054660f318421e062c74c64
Cette révision appartient à :
révisé par
Rakesh Roy
Parent
26223a792b
révision
eeaa39f2bf
@@ -309,10 +309,6 @@
|
||||
"Unit_hipFuncSetAttribute_Positive_MaxDynamicSharedMemorySize_Not_Supported",
|
||||
"Unit_hipFuncSetAttribute_Positive_PreferredSharedMemoryCarveout_Not_Supported",
|
||||
"Unit_hipLaunchCooperativeKernel_Negative_Parameters",
|
||||
"Performance_hipMemsetD16",
|
||||
"Performance_hipMemsetD16Async",
|
||||
"Performance_hipMemsetD32",
|
||||
"Performance_hipMemsetD32Async",
|
||||
"Unit_hipDeviceGetGraphMemAttribute_Positive_ReuseMemory",
|
||||
"Unit_hipGraphAddNodeTypeEventWait_Positive_Basic",
|
||||
"Unit_hipDrvGraphAddMemsetNode_Negative_Parameters",
|
||||
|
||||
@@ -387,10 +387,6 @@
|
||||
"Unit_hipFuncSetSharedMemConfig_Negative_Not_Supported",
|
||||
"Unit_hipFuncSetAttribute_Positive_MaxDynamicSharedMemorySize_Not_Supported",
|
||||
"Unit_hipFuncSetAttribute_Positive_PreferredSharedMemoryCarveout_Not_Supported",
|
||||
"Performance_hipMemsetD16",
|
||||
"Performance_hipMemsetD16Async",
|
||||
"Performance_hipMemsetD32",
|
||||
"Performance_hipMemsetD32Async",
|
||||
"Performance_hipMemcpy2D_HostToHost",
|
||||
"Performance_hipMemcpy2DAsync_HostToHost",
|
||||
"Unit_hipDeviceGetGraphMemAttribute_Positive_ReuseMemory",
|
||||
|
||||
@@ -33,7 +33,7 @@ THE SOFTWARE.
|
||||
class MemsetD16Benchmark : public Benchmark<MemsetD16Benchmark> {
|
||||
public:
|
||||
MemsetD16Benchmark(LinearAllocs allocation_type, size_t size)
|
||||
: dst_(allocation_type, size), size_(size) {}
|
||||
: dst_(allocation_type, size * sizeof(int16_t)), size_(size) {}
|
||||
|
||||
void operator()() {
|
||||
TIMED_SECTION(kTimerTypeEvent) {
|
||||
|
||||
@@ -33,7 +33,7 @@ THE SOFTWARE.
|
||||
class MemsetD16AsyncBenchmark : public Benchmark<MemsetD16AsyncBenchmark> {
|
||||
public:
|
||||
MemsetD16AsyncBenchmark(LinearAllocs allocation_type, size_t size)
|
||||
: dst_(allocation_type, size), size_(size), stream_(Streams::created) {}
|
||||
: dst_(allocation_type, size * sizeof(int16_t)), size_(size), stream_(Streams::created) {}
|
||||
|
||||
void operator()() {
|
||||
TIMED_SECTION_STREAM(kTimerTypeEvent, stream_.stream()) {
|
||||
|
||||
@@ -33,7 +33,7 @@ THE SOFTWARE.
|
||||
class MemsetD32Benchmark : public Benchmark<MemsetD32Benchmark> {
|
||||
public:
|
||||
MemsetD32Benchmark(LinearAllocs allocation_type, size_t size)
|
||||
: dst_(allocation_type, size), size_(size) {}
|
||||
: dst_(allocation_type, size * sizeof(int32_t)), size_(size) {}
|
||||
|
||||
void operator()() {
|
||||
TIMED_SECTION(kTimerTypeEvent) {
|
||||
|
||||
@@ -33,7 +33,7 @@ THE SOFTWARE.
|
||||
class MemsetD32AsyncBenchmark : public Benchmark<MemsetD32AsyncBenchmark> {
|
||||
public:
|
||||
MemsetD32AsyncBenchmark(LinearAllocs allocation_type, size_t size)
|
||||
: dst_(allocation_type, size), size_(size), stream_(Streams::created) {}
|
||||
: dst_(allocation_type, size * sizeof(int32_t)), size_(size), stream_(Streams::created) {}
|
||||
|
||||
void operator()() {
|
||||
TIMED_SECTION_STREAM(kTimerTypeEvent, stream_.stream()) {
|
||||
|
||||
Référencer dans un nouveau ticket
Bloquer un utilisateur