[libc-commits] [libc] [libc][gpu] Remove Unused Imports in Sin Benchmarks (PR #104710)

via libc-commits libc-commits at lists.llvm.org
Sun Aug 18 07:14:57 PDT 2024


https://github.com/jameshu15869 created https://github.com/llvm/llvm-project/pull/104710

This PR removes unused imports in the `sin()` benchmarks.

>From 690d585a99afd2c9d55f9889c7632902ef7d0453 Mon Sep 17 00:00:00 2001
From: jameshu15869 <jhudson15869 at gmail.com>
Date: Sun, 18 Aug 2024 10:13:50 -0400
Subject: [PATCH] remove unused imports

---
 libc/benchmarks/gpu/src/math/sin_benchmark.cpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/libc/benchmarks/gpu/src/math/sin_benchmark.cpp b/libc/benchmarks/gpu/src/math/sin_benchmark.cpp
index bf09e6e462172e..b43aebfd1f44db 100644
--- a/libc/benchmarks/gpu/src/math/sin_benchmark.cpp
+++ b/libc/benchmarks/gpu/src/math/sin_benchmark.cpp
@@ -1,9 +1,5 @@
 #include "benchmarks/gpu/LibcGpuBenchmark.h"
 
-#include "src/__support/CPP/array.h"
-#include "src/__support/CPP/bit.h"
-#include "src/__support/CPP/functional.h"
-#include "src/__support/FPUtil/FPBits.h"
 #include "src/math/sin.h"
 #include "src/math/sinf.h"
 #include "src/stdlib/rand.h"



More information about the libc-commits mailing list