File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -257,23 +257,6 @@ impl CudaBuilder {
257257 self
258258 }
259259
260- /// The virtual compute architecture to target for PTX generation. This
261- /// dictates how certain things are codegenned and may affect performance
262- /// and/or which gpus the code can run on.
263- ///
264- /// You should generally try to pick an arch that will work with most
265- /// GPUs you want your program to work with.
266- ///
267- /// If you are unsure, either leave this option to default, or pick something around 5.2 to 7.x.
268- ///
269- /// You can find a list of features supported on each arch and a list of GPUs for every
270- /// arch [`here`](https://en.wikipedia.org/wiki/CUDA#Version_features_and_specifications).
271- ///
272- /// NOTE that this does not necessarily mean that code using a certain capability
273- /// will not work on older capabilities. It means that if it uses certain
274- /// features it may not work.
275- ///
276- /// The chosen architecture enables target features for conditional compilation.
277260 /// See the documentation on the `arch` field for more details.
278261 pub fn arch ( mut self , arch : NvvmArch ) -> Self {
279262 self . arch = arch;
You can’t perform that action at this time.
0 commit comments