Fix List rendering in RTD for primitives.ipynb (#1501)

Colab doesn't require a newline before unordered list in Markdown; RTD
does.
This commit is contained in:
Trevor Cai 2019-10-14 18:55:13 +01:00 committed by Stephan Hoyer
parent 16219358e2
commit c50495b272

View File

@ -547,6 +547,7 @@
"JAX first evaluates it abstractly using only the \n",
"shape and type of the arguments. This abstract evaluation serves multiple\n",
"purposes:\n",
"\n",
" * Gets the sequence of JAX primitives that are used in the computation. This \n",
" sequence will be compiled. \n",
" * Computes the shape and type of all vectors and operations used in the computation. \n",
@ -976,6 +977,7 @@
},
"source": [
"TO EXPLAIN: \n",
"\n",
" * Why is JAX using ConcreteArray in square_add_prim? There is no abstract evaluation going on here.\n",
" * Not sure how to explain that multiply_add_prim is invoked with ConcreteValue, yet\n",
" we do not call the multiply_add_abstract_eval.\n",