Commit adceea22 by Tianqi Chen Committed by GitHub

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

parent 45138e9d
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment