ZhangAllen98

Results 5 issues of ZhangAllen98

I am using FMIKit to export a simulink model to fmu with Matlab 2021a on M1 Mac pro. The setting is as follows: [](url), while it give an error for...

bug
GRT

Executing command: python3 ./run_f2py_tool.py --build-dir f2py_build --f90flags='-fno-second-underscore -O -Dlinux -fPIC' --f77flags='-fno-second-underscore -O -Dlinux -fPIC' --fcompiler=gfortran ./f2py_build/signatures.pyf -L./ -lbufr -c 2>1 >> f2py_build.log **ERROR: build of python wrapper failed the compilation...

enhancement

I found that using `wrf.getvar` to get variables is quite slow. For example ```python import time import wrf import netCDF4 as nc wrfout = nc.Dataset(wrfout_file) t0 = time.time() SINALPHA_WRF =...

I noticed that using the `wrf.omp_set_num_threads`function with `cache` could speed up the process of `getvar` from [this page](https://wrf-python.readthedocs.io/en/latest/basic_usage.html#the-cache-argument-for-wrf-getvar). However, in my case, `wrf.omp_get_num_procs()=128` ,(64 CPU cores (128 total threads)), I...

In the [multi-time-series example](https://github.com/unit8co/darts/blob/master/examples/01-multi-time-series-and-covariates.ipynb), Note that `ElectricityDataset` contains measurements of electric power comsumption (in kW) for 370 clients with a sampling rate of 15 minutes. For this case, if I...

question