diff --git a/.gitignore b/.gitignore index 6c59ef9..da01ac7 100644 --- a/.gitignore +++ b/.gitignore @@ -141,6 +141,9 @@ flycheck_*.el .idea/**/dictionaries .idea/**/shelf +# IDEA +/.idea/ + # AWS User-specific .idea/**/aws.xml @@ -491,7 +494,8 @@ pip-selfcheck.json .LSOverride # Icon must end with two \r -Icon +Icon + # Thumbnails ._* diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/2026SEL3-project.iml b/.idea/2026SEL3-project.iml deleted file mode 100644 index db62f2a..0000000 --- a/.idea/2026SEL3-project.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/copilot.data.migration.agent.xml b/.idea/copilot.data.migration.agent.xml deleted file mode 100644 index 4ea72a9..0000000 --- a/.idea/copilot.data.migration.agent.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 3dce9c6..0000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 869d0c0..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 352d9fe..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/helloworld.py b/src/helloworld.py deleted file mode 100644 index 8a11c2b..0000000 --- a/src/helloworld.py +++ /dev/null @@ -1,11 +0,0 @@ -import math -import datetime - -def greet(): - """Prints a hello message with the current date and time.""" - current_time = datetime.datetime.now() - print(f"Hello, World! Current date and time: {current_time}") - -if __name__ == "__main__": - greet() - diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..ef7c36e --- /dev/null +++ b/src/main.py @@ -0,0 +1,4 @@ +import jax + +if __name__ == "__main__": + print(jax.devices())