aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/opts/SkOpts_hsw.cpp
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-01-10 08:42:16 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-12 15:45:38 +0000
commitd32303e7276b8a824a4d95e4b1676f9eb201ed5e (patch)
treef2b3eeca91d9088bdb3b301749094eb132f41351 /src/opts/SkOpts_hsw.cpp
parent4a0a943d5708b10daf44c26ac1a4a040393b3dec (diff)
disable runtime detected AVX2 raster pipelines
It's proving too difficult to keep on top of all the ways we might cause ODR violations that crash Chrome. I'd rather focus on other ways of running the pipelines that won't have that particular problem. Our -Fast bots will keep testing and benchmarking AVX2 raster pipelines. BUG=chromium:679147,chromium:654213,chromium:664864,chromium:666707,etc. CQ_INCLUDE_TRYBOTS=skia.primary:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD Change-Id: I35ba8f5f4303107237fd78a6ce442d7c26e5fbef Reviewed-on: https://skia-review.googlesource.com/6827 Commit-Queue: Mike Klein <mtklein@chromium.org> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'src/opts/SkOpts_hsw.cpp')
-rw-r--r--src/opts/SkOpts_hsw.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/opts/SkOpts_hsw.cpp b/src/opts/SkOpts_hsw.cpp
index bb4e4d1f47..223495f8f0 100644
--- a/src/opts/SkOpts_hsw.cpp
+++ b/src/opts/SkOpts_hsw.cpp
@@ -16,7 +16,6 @@
#include "SkOpts.h"
#define SK_OPTS_NS hsw
#include "SkBitmapFilter_opts.h"
-#include "SkRasterPipeline_opts.h"
#if defined(_INC_MATH) && !defined(INC_MATH_IS_SAFE_NOW)
#error We have included ucrt\math.h without protecting it against ODR violation.
@@ -24,8 +23,6 @@
namespace SkOpts {
void Init_hsw() {
- run_pipeline = hsw::run_pipeline;
- compile_pipeline = hsw::compile_pipeline;
convolve_vertically = hsw::convolve_vertically;
}
}