[SWDEV-442583] - Fix for hipMemset performance tests

Change-Id: Id4f0d82551aaad6b7054660f318421e062c74c64
Cette révision appartient à :
Rahul Manocha
2024-04-12 14:38:44 -07:00
révisé par Rakesh Roy
Parent 26223a792b
révision eeaa39f2bf
6 fichiers modifiés avec 4 ajouts et 12 suppressions
-4
Voir le fichier
@@ -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",
-4
Voir le fichier
@@ -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",
+1 -1
Voir le fichier
@@ -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) {
+1 -1
Voir le fichier
@@ -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()) {
+1 -1
Voir le fichier
@@ -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) {
+1 -1
Voir le fichier
@@ -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()) {