Skip to content
Snippets Groups Projects
Commit adceea22 authored by Tianqi Chen's avatar Tianqi Chen Committed by GitHub
Browse files

fix gemm tutorial for env that may not have right instruction (#810)

parent 45138e9d
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,9 @@ N = 1024
dtype = "float32"
# using Intel AVX2(Advanced Vector Extensions) ISA for SIMD
target = 'llvm -mcpu=core-avx2'
# To get the best performance, please change the following line
# to llvm -mcpu=core-avx2, or specific type of CPU you use
target = 'llvm'
ctx = tvm.context(target, 0)
# Random generated tensor for testing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment