Skip to content

Commit ed0ab94

Browse files
authored
remove ET_LOG from kernel temp allocator
Differential Revision: D81706654 Pull Request resolved: #13957
1 parent 10e93fb commit ed0ab94

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

backends/cadence/hifi/kernels/kernels.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,9 @@ memcpy(void* dst, const void* src, size_t num_bytes) {
2323
void* allocate_temp_memory(KernelRuntimeContext& ctx, size_t size) {
2424
constexpr size_t kAlignment =
2525
16; // 16-byte alignment for vectorized operations
26-
ET_LOG(
27-
Info,
28-
"Attempting to allocate %zu bytes of temp memory (16-byte aligned)",
29-
size);
3026
Result<void*> temp_mem_res = ctx.allocate_temp(size, kAlignment);
3127
if (temp_mem_res.ok()) {
3228
void* ptr = temp_mem_res.get();
33-
ET_LOG(
34-
Info,
35-
"Successfully allocated temp memory at %p (16-byte aligned)",
36-
ptr);
3729
return ptr;
3830
} else {
3931
ET_LOG(

0 commit comments

Comments
 (0)