[MLIR][KernelGen] Disable loop unrolling for slow trigonometric kernels

PiperOrigin-RevId: 355159729
Change-Id: Ice41df18ce27ca580fb1b2cbc3d0de1d31db1530
This commit is contained in:
A. Unique TensorFlower 2021-02-02 07:21:31 -08:00 committed by TensorFlower Gardener
parent b282519868
commit 7ec285825c

View File

@ -365,7 +365,6 @@ gen_kernel_library(
"f32",
"f64",
],
unroll_factors = "4",
)
gen_kernel_library(
@ -375,7 +374,6 @@ gen_kernel_library(
"f32",
"f64",
],
unroll_factors = "4",
)
gen_kernel_library(
@ -399,7 +397,6 @@ gen_kernel_library(
"f32",
"f64",
],
unroll_factors = "4",
)
gen_kernel_library(
@ -409,7 +406,6 @@ gen_kernel_library(
"f32",
"f64",
],
unroll_factors = "4",
)
gen_kernel_library(
@ -539,7 +535,6 @@ gen_kernel_library(
"f32",
"f64",
],
unroll_factors = "4",
)
[