How do I find out the model of my graphics card?











up vote
209
down vote

favorite
52












I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!



I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.










share|improve this question




















  • 1




    The best answer that I have found so far is here: askubuntu.com/a/392944/173666
    – Ioannis Filippidis
    Jul 10 '16 at 22:36






  • 1




    This answer is the one that helped me most: askubuntu.com/a/5420/21035
    – galath
    Jan 13 '17 at 14:03















up vote
209
down vote

favorite
52












I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!



I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.










share|improve this question




















  • 1




    The best answer that I have found so far is here: askubuntu.com/a/392944/173666
    – Ioannis Filippidis
    Jul 10 '16 at 22:36






  • 1




    This answer is the one that helped me most: askubuntu.com/a/5420/21035
    – galath
    Jan 13 '17 at 14:03













up vote
209
down vote

favorite
52









up vote
209
down vote

favorite
52






52





I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!



I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.










share|improve this question















I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!



I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.







graphics hardware gpu






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 at 21:36









Jackspace

195




195










asked Oct 27 '11 at 9:51









sasyna

1,066287




1,066287








  • 1




    The best answer that I have found so far is here: askubuntu.com/a/392944/173666
    – Ioannis Filippidis
    Jul 10 '16 at 22:36






  • 1




    This answer is the one that helped me most: askubuntu.com/a/5420/21035
    – galath
    Jan 13 '17 at 14:03














  • 1




    The best answer that I have found so far is here: askubuntu.com/a/392944/173666
    – Ioannis Filippidis
    Jul 10 '16 at 22:36






  • 1




    This answer is the one that helped me most: askubuntu.com/a/5420/21035
    – galath
    Jan 13 '17 at 14:03








1




1




The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36




The best answer that I have found so far is here: askubuntu.com/a/392944/173666
– Ioannis Filippidis
Jul 10 '16 at 22:36




1




1




This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03




This answer is the one that helped me most: askubuntu.com/a/5420/21035
– galath
Jan 13 '17 at 14:03










5 Answers
5






active

oldest

votes

















up vote
223
down vote













Open up "Terminal", and type: lspci | grep VGA



There, you'll find your GPU card's model.






share|improve this answer



















  • 8




    I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
    – Pete
    Dec 29 '15 at 19:27






  • 1




    In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
    – Adam Marshall
    Aug 14 '16 at 10:39








  • 2




    First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
    – VJ-
    Nov 27 '17 at 7:52




















up vote
98
down vote













For detailed information about your graphics card, usually including its make and model, run:



sudo lshw -C video


This might give the make and model name more often than lspci, but it is not guaranteed to give it (nor is lspci).



sudo lshw -C display is equivalent.



You can run this (either one) without sudo, but you're a little less likely to get as much information. Still, lshw -C video is a reasonable choice if you don't have administrative powers.



If you like, you can parse the output to get just the line with the model name:



sudo lshw -C video | grep product:


Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):



sudo lshw -C video | awk -F'product: ' '/product/{print $2}'


(Don't forget the space just after -Fproduct:, before the closing '.)



As an example: on my system, this gives:



M52 [Mobility Radeon X1300]





share|improve this answer























  • first command worked pretty well for AMD gpu
    – Rahul
    Jan 20 '17 at 10:28


















up vote
35
down vote













Sometimes lspci is not enough:



$ lspci -nn |egrep "VGA|Display" 


e.g.: you can end up with something like this:



00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)


so then you can try to grep Xorg log:



$ grep -i chipset /var/log/Xorg.0.log


and dmesg



$ dmesg |grep -i agp





share|improve this answer

















  • 5




    The Xorg logs were the only thing that had the specific model for me. +1
    – Cory Klein
    Sep 19 '13 at 22:49






  • 1




    +1 Having an Intel card, only this method gives me some specific info about my card.
    – Ramchandra Apte
    Sep 29 '13 at 11:10


















up vote
8
down vote














  1. run gnome-control-center (from a terminal, or in the main menu system settings)

  2. search for 'system' and open "System Info"

  3. You are done.






share|improve this answer

















  • 1




    Type update-pciids and then try lspci again
    – chrisfs
    Jan 18 '13 at 17:36


















up vote
5
down vote













If GUI/display available, you can try:



xrandr --listproviders





share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f72766%2fhow-do-i-find-out-the-model-of-my-graphics-card%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    5 Answers
    5






    active

    oldest

    votes








    5 Answers
    5






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    223
    down vote













    Open up "Terminal", and type: lspci | grep VGA



    There, you'll find your GPU card's model.






    share|improve this answer



















    • 8




      I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
      – Pete
      Dec 29 '15 at 19:27






    • 1




      In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
      – Adam Marshall
      Aug 14 '16 at 10:39








    • 2




      First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
      – VJ-
      Nov 27 '17 at 7:52

















    up vote
    223
    down vote













    Open up "Terminal", and type: lspci | grep VGA



    There, you'll find your GPU card's model.






    share|improve this answer



















    • 8




      I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
      – Pete
      Dec 29 '15 at 19:27






    • 1




      In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
      – Adam Marshall
      Aug 14 '16 at 10:39








    • 2




      First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
      – VJ-
      Nov 27 '17 at 7:52















    up vote
    223
    down vote










    up vote
    223
    down vote









    Open up "Terminal", and type: lspci | grep VGA



    There, you'll find your GPU card's model.






    share|improve this answer














    Open up "Terminal", and type: lspci | grep VGA



    There, you'll find your GPU card's model.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 9 '12 at 18:45

























    answered Oct 27 '11 at 10:11









    Shiki

    3,39351425




    3,39351425








    • 8




      I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
      – Pete
      Dec 29 '15 at 19:27






    • 1




      In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
      – Adam Marshall
      Aug 14 '16 at 10:39








    • 2




      First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
      – VJ-
      Nov 27 '17 at 7:52
















    • 8




      I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
      – Pete
      Dec 29 '15 at 19:27






    • 1




      In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
      – Adam Marshall
      Aug 14 '16 at 10:39








    • 2




      First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
      – VJ-
      Nov 27 '17 at 7:52










    8




    8




    I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
    – Pete
    Dec 29 '15 at 19:27




    I had to specify -v (verbose) to get the model on my ATI... for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
    – Pete
    Dec 29 '15 at 19:27




    1




    1




    In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
    – Adam Marshall
    Aug 14 '16 at 10:39






    In such cases, DeviceName is what you want and it's likely the line after the one you're grepping. Use lspci -v | grep VGA -A 1 to include one line after.
    – Adam Marshall
    Aug 14 '16 at 10:39






    2




    2




    First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
    – VJ-
    Nov 27 '17 at 7:52






    First do sudo update-pciids to download new version of the PCI ID list. Then do lspci. Updating pci ids can improve information available as lspci output. For example, before updating pci ids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM (rev a2) Compare that to after doing update-pciids, 01:00.0 3D controller: NVIDIA Corporation GM107GLM [Quadro M1200 Mobile] (rev a2)
    – VJ-
    Nov 27 '17 at 7:52














    up vote
    98
    down vote













    For detailed information about your graphics card, usually including its make and model, run:



    sudo lshw -C video


    This might give the make and model name more often than lspci, but it is not guaranteed to give it (nor is lspci).



    sudo lshw -C display is equivalent.



    You can run this (either one) without sudo, but you're a little less likely to get as much information. Still, lshw -C video is a reasonable choice if you don't have administrative powers.



    If you like, you can parse the output to get just the line with the model name:



    sudo lshw -C video | grep product:


    Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):



    sudo lshw -C video | awk -F'product: ' '/product/{print $2}'


    (Don't forget the space just after -Fproduct:, before the closing '.)



    As an example: on my system, this gives:



    M52 [Mobility Radeon X1300]





    share|improve this answer























    • first command worked pretty well for AMD gpu
      – Rahul
      Jan 20 '17 at 10:28















    up vote
    98
    down vote













    For detailed information about your graphics card, usually including its make and model, run:



    sudo lshw -C video


    This might give the make and model name more often than lspci, but it is not guaranteed to give it (nor is lspci).



    sudo lshw -C display is equivalent.



    You can run this (either one) without sudo, but you're a little less likely to get as much information. Still, lshw -C video is a reasonable choice if you don't have administrative powers.



    If you like, you can parse the output to get just the line with the model name:



    sudo lshw -C video | grep product:


    Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):



    sudo lshw -C video | awk -F'product: ' '/product/{print $2}'


    (Don't forget the space just after -Fproduct:, before the closing '.)



    As an example: on my system, this gives:



    M52 [Mobility Radeon X1300]





    share|improve this answer























    • first command worked pretty well for AMD gpu
      – Rahul
      Jan 20 '17 at 10:28













    up vote
    98
    down vote










    up vote
    98
    down vote









    For detailed information about your graphics card, usually including its make and model, run:



    sudo lshw -C video


    This might give the make and model name more often than lspci, but it is not guaranteed to give it (nor is lspci).



    sudo lshw -C display is equivalent.



    You can run this (either one) without sudo, but you're a little less likely to get as much information. Still, lshw -C video is a reasonable choice if you don't have administrative powers.



    If you like, you can parse the output to get just the line with the model name:



    sudo lshw -C video | grep product:


    Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):



    sudo lshw -C video | awk -F'product: ' '/product/{print $2}'


    (Don't forget the space just after -Fproduct:, before the closing '.)



    As an example: on my system, this gives:



    M52 [Mobility Radeon X1300]





    share|improve this answer














    For detailed information about your graphics card, usually including its make and model, run:



    sudo lshw -C video


    This might give the make and model name more often than lspci, but it is not guaranteed to give it (nor is lspci).



    sudo lshw -C display is equivalent.



    You can run this (either one) without sudo, but you're a little less likely to get as much information. Still, lshw -C video is a reasonable choice if you don't have administrative powers.



    If you like, you can parse the output to get just the line with the model name:



    sudo lshw -C video | grep product:


    Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):



    sudo lshw -C video | awk -F'product: ' '/product/{print $2}'


    (Don't forget the space just after -Fproduct:, before the closing '.)



    As an example: on my system, this gives:



    M52 [Mobility Radeon X1300]






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jan 20 '17 at 10:19









    Benoit Duffez

    227311




    227311










    answered Apr 12 '13 at 22:01









    Eliah Kagan

    81k20226364




    81k20226364












    • first command worked pretty well for AMD gpu
      – Rahul
      Jan 20 '17 at 10:28


















    • first command worked pretty well for AMD gpu
      – Rahul
      Jan 20 '17 at 10:28
















    first command worked pretty well for AMD gpu
    – Rahul
    Jan 20 '17 at 10:28




    first command worked pretty well for AMD gpu
    – Rahul
    Jan 20 '17 at 10:28










    up vote
    35
    down vote













    Sometimes lspci is not enough:



    $ lspci -nn |egrep "VGA|Display" 


    e.g.: you can end up with something like this:



    00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)


    so then you can try to grep Xorg log:



    $ grep -i chipset /var/log/Xorg.0.log


    and dmesg



    $ dmesg |grep -i agp





    share|improve this answer

















    • 5




      The Xorg logs were the only thing that had the specific model for me. +1
      – Cory Klein
      Sep 19 '13 at 22:49






    • 1




      +1 Having an Intel card, only this method gives me some specific info about my card.
      – Ramchandra Apte
      Sep 29 '13 at 11:10















    up vote
    35
    down vote













    Sometimes lspci is not enough:



    $ lspci -nn |egrep "VGA|Display" 


    e.g.: you can end up with something like this:



    00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)


    so then you can try to grep Xorg log:



    $ grep -i chipset /var/log/Xorg.0.log


    and dmesg



    $ dmesg |grep -i agp





    share|improve this answer

















    • 5




      The Xorg logs were the only thing that had the specific model for me. +1
      – Cory Klein
      Sep 19 '13 at 22:49






    • 1




      +1 Having an Intel card, only this method gives me some specific info about my card.
      – Ramchandra Apte
      Sep 29 '13 at 11:10













    up vote
    35
    down vote










    up vote
    35
    down vote









    Sometimes lspci is not enough:



    $ lspci -nn |egrep "VGA|Display" 


    e.g.: you can end up with something like this:



    00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)


    so then you can try to grep Xorg log:



    $ grep -i chipset /var/log/Xorg.0.log


    and dmesg



    $ dmesg |grep -i agp





    share|improve this answer












    Sometimes lspci is not enough:



    $ lspci -nn |egrep "VGA|Display" 


    e.g.: you can end up with something like this:



    00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)


    so then you can try to grep Xorg log:



    $ grep -i chipset /var/log/Xorg.0.log


    and dmesg



    $ dmesg |grep -i agp






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 2 '12 at 14:53









    sobi3ch

    712815




    712815








    • 5




      The Xorg logs were the only thing that had the specific model for me. +1
      – Cory Klein
      Sep 19 '13 at 22:49






    • 1




      +1 Having an Intel card, only this method gives me some specific info about my card.
      – Ramchandra Apte
      Sep 29 '13 at 11:10














    • 5




      The Xorg logs were the only thing that had the specific model for me. +1
      – Cory Klein
      Sep 19 '13 at 22:49






    • 1




      +1 Having an Intel card, only this method gives me some specific info about my card.
      – Ramchandra Apte
      Sep 29 '13 at 11:10








    5




    5




    The Xorg logs were the only thing that had the specific model for me. +1
    – Cory Klein
    Sep 19 '13 at 22:49




    The Xorg logs were the only thing that had the specific model for me. +1
    – Cory Klein
    Sep 19 '13 at 22:49




    1




    1




    +1 Having an Intel card, only this method gives me some specific info about my card.
    – Ramchandra Apte
    Sep 29 '13 at 11:10




    +1 Having an Intel card, only this method gives me some specific info about my card.
    – Ramchandra Apte
    Sep 29 '13 at 11:10










    up vote
    8
    down vote














    1. run gnome-control-center (from a terminal, or in the main menu system settings)

    2. search for 'system' and open "System Info"

    3. You are done.






    share|improve this answer

















    • 1




      Type update-pciids and then try lspci again
      – chrisfs
      Jan 18 '13 at 17:36















    up vote
    8
    down vote














    1. run gnome-control-center (from a terminal, or in the main menu system settings)

    2. search for 'system' and open "System Info"

    3. You are done.






    share|improve this answer

















    • 1




      Type update-pciids and then try lspci again
      – chrisfs
      Jan 18 '13 at 17:36













    up vote
    8
    down vote










    up vote
    8
    down vote










    1. run gnome-control-center (from a terminal, or in the main menu system settings)

    2. search for 'system' and open "System Info"

    3. You are done.






    share|improve this answer













    1. run gnome-control-center (from a terminal, or in the main menu system settings)

    2. search for 'system' and open "System Info"

    3. You are done.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Oct 27 '11 at 10:27









    imbaer

    2,15812125




    2,15812125








    • 1




      Type update-pciids and then try lspci again
      – chrisfs
      Jan 18 '13 at 17:36














    • 1




      Type update-pciids and then try lspci again
      – chrisfs
      Jan 18 '13 at 17:36








    1




    1




    Type update-pciids and then try lspci again
    – chrisfs
    Jan 18 '13 at 17:36




    Type update-pciids and then try lspci again
    – chrisfs
    Jan 18 '13 at 17:36










    up vote
    5
    down vote













    If GUI/display available, you can try:



    xrandr --listproviders





    share|improve this answer



























      up vote
      5
      down vote













      If GUI/display available, you can try:



      xrandr --listproviders





      share|improve this answer

























        up vote
        5
        down vote










        up vote
        5
        down vote









        If GUI/display available, you can try:



        xrandr --listproviders





        share|improve this answer














        If GUI/display available, you can try:



        xrandr --listproviders






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Oct 25 '17 at 14:16









        Community

        1




        1










        answered Jul 29 '16 at 0:03









        Constantine

        5112




        5112






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f72766%2fhow-do-i-find-out-the-model-of-my-graphics-card%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Quarter-circle Tiles

            build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

            Mont Emei