發表文章

目前顯示的是 12月 10, 2018的文章

Can a Compute Capability 3.0 card run Tensorflow 1.8 tensorflow-gpu runtime?

圖片
up vote 0 down vote favorite Going through the install tutorial for Linux (Tensorflow 1.8) and I'm not sure how to interpret the phrase: GPU card with CUDA Compute Capability 3.0 or higher for building from source and 3.5 or higher for our binaries. See NVIDIA documentation for a list of supported GPU cards. I have an NVIDIA GTX 770 which has Compute Capability 3.0, does that mean I can build the tensorflow-gpu binary but I can't use it to run/execute tensorflow-gpu? (current CUDA version for TF is 9.0 + cuDNN 7.x) tensorflow cuda gpu nvidia share | improve this question asked May 14 at 23:37 schrepfler 30 1 6 add a comment  |  up vote 0 down vote favorite Going through the install tutorial for Linux (Tensorflow 1.8) and I'm not sure how to interpret the phrase: GPU card with CUDA Compute Capability 3.0 or higher for building from source and 3.5 or higher for our binaries. See NVIDIA documentation for a list of

Kaributas

圖片
Seal of Kaributas Kaributas ( Koribut , Korybut , baptized Dmitry ; after 1350 – after 1404) was a son of Algirdas, Grand Duke of Lithuania, and reigned in Severian Novgorod until 1393. Kaributas was born some time after 1350 (exact date is unknown) to Algirdas of Lithuania and Uliana of Tver. Born a pagan, around 1380 he was baptised in the Orthodox rite and became the prince of Severian Novgorod. [1] He adopted the Christian name of Dmitry and hence is sometimes referred to as Dmitry Korybut (a combination of his Slavicised Lithuanian name Kaributas and his Christian name). He appeared in politics during the Lithuanian Civil War (1381–1384) when he supported his brother Jogaila against his uncle Kęstutis and cousin Vytautas. In 1382 he began a rebellion in Severian Novgorod, engaging Kęstutis' forces so that Jogaila could attack and capture lightly guarded Vilnius, capital of the Grand Duchy. [2] He also witnessed the Treaty of Dubysa with the Teutonic Knights. For his service

Skirgaila

圖片
This article may be expanded with text translated from the corresponding article in Latvian . (November 2015) Click [show] for important translation instructions. View a machine-translated version of the Latvian article. Machine translation like Deepl or Google Translate is a useful starting point for translations, but translators must revise errors as necessary and confirm that the translation is accurate, rather than simply copy-pasting machine-translated text into the English Wikipedia. Do not translate text that appears unreliable or low-quality. If possible, verify the text with references provided in the foreign-language article. You must provide copyright attribution in the edit summary by providing an interlanguage link to the source of your translation. A model attribution edit summary (using German): Content in this edit is translated from the existing German Wikipedia article at [[:de:Exact name of German article]]; see its history for attribution. You should also add the

Compiler translations for constant addition

圖片
up vote 0 down vote favorite Consider the following C code: int x = 9 + 5; Will the C compiler add 9 and 5 and reduce it to int x = 14; at compile time? or it will leave it as such that the addition will be evaluated at run time? compiler-optimization share | improve this question asked Nov 11 at 16:52 Ahmad Al-Mahdi 70 1 8 3 Constant folding is among the most trivial of optimizations, so any compiler that makes any pretense at optimization at all will do this. – Brian Goetz Nov 11 at 16:56 add a comment  |  up vote 0 down vote favorite Consider the following C code: int x = 9 + 5; Will the C compiler add 9 and 5 and reduce it to int x = 14; at compile time? or it will leave it as such that the addition will be evaluated at run time? compiler-optimization share | improve this question asked Nov 11 at 16:52 Ahmad Al-Mahdi 70 1 8 3 Constant folding is among the most tri