C++をSageMaker Studio Labで使いたい #13
Answered
by
icoxfog417
icoxfog417
asked this question in
Q&A
-
C++をSageMaker Studio Labで実行する方法はあるでしょうか? |
Beta Was this translation helpful? Give feedback.
Answered by
icoxfog417
Oct 4, 2022
Replies: 1 comment 1 reply
-
あります。JupyterはKernelを追加することで他の言語を動かすことができます。以下はその言語の一覧ですが、C++は拡張可能な言語のひとつになります。 C++はxeus-clingでKernelを追加できることを確認しました。
行列演算を行う場合はxtensorが便利です。 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
icoxfog417
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
あります。JupyterはKernelを追加することで他の言語を動かすことができます。以下はその言語の一覧ですが、C++は拡張可能な言語のひとつになります。
Jupyter kernels
C++はxeus-clingでKernelを追加できることを確認しました。
cpp
の環境を作成conda install xeus-cling libstdcxx-devel_linux-64==9.4.0 libgcc-devel_linux-64==9.4.0 -c conda-forge
行列演算を行う場合はxtensorが便利です。