Skip to content

Commit

Permalink
Optimize gui thread
Browse files Browse the repository at this point in the history
Selectable plots, matches in table
  • Loading branch information
Hampus Linander committed Sep 19, 2024
1 parent 6c2659a commit a94d8ac
Show file tree
Hide file tree
Showing 4 changed files with 1,253 additions and 791 deletions.
68 changes: 35 additions & 33 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@
# outputs = { self, nixpkgs, ... }:
let
disableCudaEnvFlag = builtins.getEnv "DISABLE_CUDA";
system = "x86_64-linux";
# system = "x86_64-linux";
system = "aarch64-darwin";
# system = builtins.currentSystem;
pkgs = (import nixpkgs {
inherit system;
config = {
allowUnfree = true;
cudaSupport = disableCudaEnvFlag != "1";
# cudaSupport = disableCudaEnvFlag != "1";
};
});
rustToolchain = fenix.packages."${system}".stable;
Expand Down Expand Up @@ -250,7 +252,7 @@
ipython
black
flake8
wandb
# wandb
snakeviz
pandas
matplotlib
Expand All @@ -269,22 +271,22 @@
shaderc
gitui
lazygit
linuxPackages_latest.perf
# linuxPackages_latest.perf
glfw3
glm
xorg.libX11
xorg.libpthreadstubs
xorg.libXau
xorg.libXdmcp
xorg.libXrandr
xorg.libXinerama
xorg.libXcursor
xorg.libXi
xorg.libxcb
xorg.xkbevd
xorg.xkbutils
xclip
libxkbcommon
# xorg.libX11
# xorg.libpthreadstubs
# xorg.libXau
# xorg.libXdmcp
# xorg.libXrandr
# xorg.libXinerama
# xorg.libXcursor
# xorg.libXi
# xorg.libxcb
# xorg.xkbevd
# xorg.xkbutils
# xclip
# libxkbcommon
libGL
libGLU

Expand All @@ -299,7 +301,7 @@
])
fenix.packages."${system}".rust-analyzer
nil
julia
# julia
(postgresql_15.withPackages(p: [p.timescaledb]))
ruff
helixmaster
Expand All @@ -325,21 +327,21 @@
plotly
];
})
(rstudioWrapper.override {
packages = with rPackages; [
ggplot2
dplyr
patchwork
reticulate
Hmisc
RPostgreSQL
plotly
esquisse
matlab
ggExtra
ggpubr
];
})
# (rstudioWrapper.override {
# packages = with rPackages; [
# ggplot2
# dplyr
# patchwork
# reticulate
# Hmisc
# RPostgreSQL
# plotly
# esquisse
# matlab
# ggExtra
# ggpubr
# ];
# })
# cudatoolkit
# python
pythonWithPackages
Expand Down
Loading

0 comments on commit a94d8ac

Please sign in to comment.