forked from M-Labs/artiq
1
0
Fork 0
Commit Graph

861 Commits

Author SHA1 Message Date
Robert Jördens 6a0bc19279 pdq2/driver: document a few units 2015-03-23 20:31:37 -06:00
Sebastien Bourdeauducq 768fa21488 lda_controller: show default product type 2015-03-23 20:02:36 +01:00
Sebastien Bourdeauducq bd145bbabc use %(default) in argparse 2015-03-23 20:02:14 +01:00
Sebastien Bourdeauducq b597483913 thorlabs_tcube: spelling, fix ping 2015-03-23 17:24:12 +01:00
Yann Sionneau 91336f974d lda_controller: replace serial argument with device one 2015-03-23 17:02:39 +01:00
Yann Sionneau 2651050c83 Controller cleanups 2015-03-23 17:02:39 +01:00
Sebastien Bourdeauducq 0b174085c8 pdq2/mediator: rewrite, adapt to new PDQ RPC format, support anonymous segments, support uploading to controllers 2015-03-22 22:30:59 +01:00
Sebastien Bourdeauducq c18efa11b3 wavesynth: fix frame/segment terminology 2015-03-22 10:56:34 +01:00
Sebastien Bourdeauducq 1b7f71bda9 controllers: consistent device/simulation specification 2015-03-22 00:48:15 +01:00
Sebastien Bourdeauducq 7e61f66493 pdq2/mediator: get pdq devices from pdb 2015-03-22 00:24:42 +01:00
Robert Jördens 8cb77b0336 pdq2: rename url parameter to device and require it 2015-03-21 00:33:50 -06:00
Robert Jördens 05781699b8 pdq2: driver and unittest
* parses wavesynth style programs
* verified with cosimulated gateware
2015-03-21 00:29:00 -06:00
Sebastien Bourdeauducq 200e20fb39 worker: close devices immediately after run and before analyze 2015-03-20 12:01:34 +01:00
Robert Jördens 577754c38f pdq2: fix argparser 2015-03-19 22:26:12 -06:00
Robert Jördens 222d0a9d37 pdq2_controller: add dump option 2015-03-19 21:38:46 -06:00
Robert Jördens 5ab3290ed4 pdq2: add refactored client code 2015-03-19 20:34:29 -06:00
Robert Jördens fae7246f30 pdq2: merge from main pdq2 repo 2015-03-19 14:34:37 -06:00
Sebastien Bourdeauducq 2257cfa952 wavesynth/compute_samples/: demonstrate dds clear 2015-03-15 18:13:47 +01:00
Sebastien Bourdeauducq 40bd101de0 wavesynth/compute_samples/SplinePhase: fix reduction 2015-03-15 18:13:09 +01:00
Sebastien Bourdeauducq 1d0fde7f13 wavesynth: program decoding 2015-03-15 18:05:03 +01:00
Sebastien Bourdeauducq 327448977c wavesynth/compute_samples: use set_coefficients 2015-03-15 16:48:24 +01:00
Sebastien Bourdeauducq 0d8260af6e wavesynth: basic sample computation 2015-03-15 16:30:07 +01:00
Sebastien Bourdeauducq 2b3641ac0a db,worker: fix realtime result initialization 2015-03-13 15:12:55 +01:00
Sebastien Bourdeauducq 7a1d60ee15 coredevice,runtime,language: add parameters to runtime exceptions, include information with RTIO errors 2015-03-13 14:55:18 +01:00
Sebastien Bourdeauducq 84732a469d coredevice/gpio: fix indentation 2015-03-13 14:31:50 +01:00
Sebastien Bourdeauducq 3122623c6f rtio: make 63-bit timestamp counter the default [soc] 2015-03-12 13:13:35 +01:00
Sebastien Bourdeauducq f158711f7e test/worker: test watchdog in build() 2015-03-11 19:07:04 +01:00
Sebastien Bourdeauducq 43a05c783d worker: split write_results action 2015-03-11 19:06:46 +01:00
Sebastien Bourdeauducq 4ba54ac929 test: do not close/recreate the asyncio event loop (WA for asyncio bugs when multiple tests are run) 2015-03-11 19:05:01 +01:00
Sebastien Bourdeauducq e037b930d8 test: add worker unittest 2015-03-11 18:26:04 +01:00
Sebastien Bourdeauducq 5ca4821a29 ctlmgr: use workaround for asyncio.wait_for(process.wait()... Python bug 2015-03-11 16:48:16 +01:00
Sebastien Bourdeauducq d5795fd619 master: watchdog support
Introduces a watchdog context manager to use in the experiment code that
terminates the process with an error if it times out. The syntax is:

with self.scheduler.watchdog(20*s):
   ...

Watchdogs timers are implemented by the master process (and the worker
communicates the necessary information about them) so that they can be
enforced even if the worker crashes. They can be nested arbitrarily.
During yields, all watchdog timers for the yielding worker are
suspended [TODO]. Setting up watchdogs is not supported in kernels,
however, a kernel can be called within watchdog contexts (and terminating
the worker will terminate the kernel [TODO]).

It is possible to implement a heartbeat mechanism using a watchdog, e.g.:

for i in range(...):
    with self.scheduler.watchdog(...):
        ....

Crashes/freezes within the iterator or the loop management would not be
detected, but they should be rare enough.
2015-03-11 16:43:14 +01:00
Sebastien Bourdeauducq f2134fa4b2 master,worker: split prepare/run/analyze 2015-03-09 23:34:09 +01:00
Sebastien Bourdeauducq 4c280d5fcc master: use a new worker process for each experiment 2015-03-09 16:22:41 +01:00
Sebastien Bourdeauducq ec1d082730 remove timeout from run_params (to be replaced by a better mechanism) 2015-03-09 10:51:32 +01:00
Sebastien Bourdeauducq d95a9cac9a move realtime result registration into dbh, simplify syntax 2015-03-08 17:27:27 +01:00
Sebastien Bourdeauducq f2e3dfb848 Experiment base class, replace __artiq_unit__ with docstring 2015-03-08 15:55:30 +01:00
Sebastien Bourdeauducq 407477bc5a test: add ARTIQ_NO_PERIPHERALS environment variable to disable tests requiring non-core devices 2015-03-08 11:40:50 +01:00
Sebastien Bourdeauducq 0f007cb1a7 language/db: remove implicit_core 2015-03-08 11:37:53 +01:00
Sebastien Bourdeauducq ac697e3248 test/thorlabs_tcube: fix default serial port 2015-03-08 11:37:24 +01:00
Sebastien Bourdeauducq 28bce9ee40 artiqlib -> artiq.gateware 2015-03-08 11:00:24 +01:00
Sebastien Bourdeauducq 9fad01d967 test/thorlabs_tcube: fix test discovery and style 2015-03-04 23:53:49 +00:00
Yann Sionneau c2831db253 thorlabs_tcube: add realistic values for status bits and dc status in driver sim 2015-03-04 23:45:22 +00:00
Yann Sionneau 5091098eb0 thorlabs_tcube: driver PEP8 fix 2015-03-04 23:45:21 +00:00
Yann Sionneau bc19d6f7a8 thorlabs_tcube: add unit tests 2015-03-04 23:45:21 +00:00
Yann Sionneau 5b8691f7f5 thorlabs_tcube: fix driver spelling issues 2015-03-04 23:45:21 +00:00
Yann Sionneau 14c759ff89 add Thorlabs T-Cube NDSP 2015-03-04 14:30:49 +00:00
Sebastien Bourdeauducq f307897bec units: fix strip_unit 2015-02-27 10:43:03 -07:00
Sebastien Bourdeauducq 0abd41a04a pc_rpc: trace support in server 2015-02-27 00:17:11 -07:00
Sebastien Bourdeauducq 3e46a36a4d lda: do not print attenuation value in simulation 2015-02-27 00:16:56 -07:00
Sebastien Bourdeauducq ee9d616733 language/units: add strip_unit function 2015-02-26 23:31:07 -07:00
Sebastien Bourdeauducq f855834810 gui/tools/DictSyncer: remove dead code 2015-02-26 22:10:53 -07:00
Yann Sionneau b672a99174 lda: add support for ping 2015-02-26 09:30:30 -07:00
Sebastien Bourdeauducq d51493fb5d language/core: fix interpreter implementations of time/cycle conversions 2015-02-25 21:15:46 -07:00
Yann Sionneau 1b5944257e units: add support for V (Volt) 2015-02-24 14:15:38 -07:00
Yann Sionneau 9485372277 units: add support for abs() on Quantity 2015-02-24 14:15:23 -07:00
Sebastien Bourdeauducq 651ed71b79 master: basic automatic experiment list 2015-02-21 20:34:31 -07:00
Sebastien Bourdeauducq 4267e0deab master,artiq_run: simplify unit autodetection 2015-02-21 20:26:58 -07:00
Sebastien Bourdeauducq 387de11e56 artiq_run: fix import 2015-02-21 20:09:46 -07:00
Sebastien Bourdeauducq 6601bebcfe master: make RIDs unique across restarts 2015-02-21 18:41:07 -07:00
Sebastien Bourdeauducq ceb02b42cb master: use full year in result folder name 2015-02-21 18:34:31 -07:00
Sebastien Bourdeauducq 965dd89b61 master: reorganize result output code 2015-02-21 14:28:18 -07:00
Sebastien Bourdeauducq 1aec6a0462 master: name results 'year-month-day/hour-minute/runid-experiment' 2015-02-21 13:42:26 -07:00
Sebastien Bourdeauducq cc172699ea master: use RID + unit class name for HDF5 filenames 2015-02-20 14:11:55 -07:00
Sebastien Bourdeauducq 65555a3a09 artiq_run,master: introduce __artiq_unit__ attribute to mark and name experiments 2015-02-20 14:01:34 -07:00
Yann Sionneau 5cfdac9c7c Lda: replace assert with direct exception raising 2015-02-20 10:21:15 -07:00
Sebastien Bourdeauducq 0dd5692c32 master,run: pass run_params to experiment 2015-02-19 20:05:12 -07:00
Sebastien Bourdeauducq 4d21b78314 master,client,gui: factor timeout into run_params 2015-02-19 20:03:55 -07:00
Sebastien Bourdeauducq d01ba8e644 artiq_run: provide dummy scheduler API 2015-02-19 12:09:37 -07:00
Sebastien Bourdeauducq c69c4d5ce9 master: expose scheduler API to experiments 2015-02-19 12:09:11 -07:00
Sebastien Bourdeauducq 9ffc370416 master,run: automatically call analyze function 2015-02-19 09:40:15 -07:00
Sebastien Bourdeauducq 5bb6a3d8a6 style 2015-02-18 11:34:00 -07:00
Sebastien Bourdeauducq de4a15c315 lda: add unit tests 2015-02-18 11:33:25 -07:00
Sebastien Bourdeauducq 05824fd3be lda: style 2015-02-18 11:31:44 -07:00
Yann Sionneau dc132bd248 lda: fixes 2015-02-18 11:23:24 -07:00
Yann Sionneau 3c50610f3d pyon: bytes support 2015-02-18 11:19:03 -07:00
Sebastien Bourdeauducq e10390d142 coredevice: add get_rtio_time 2015-02-18 09:56:30 -07:00
Sebastien Bourdeauducq ec84726858 py2llvm: support conversion of fractions to float 2015-02-18 09:56:07 -07:00
Sebastien Bourdeauducq d484b3a548 tools: add missing import 2015-02-18 08:52:31 -07:00
Sebastien Bourdeauducq 3543dc30c7 Revert "tools/file_import: use python 3.4 importlib API"
This reverts commit 614a96a3d7.

Conflicts:
	artiq/tools.py
2015-02-18 08:51:44 -07:00
Sebastien Bourdeauducq 170a626c76 tools/file_import: support import of modules importing from their directory 2015-02-17 16:13:00 -07:00
Sebastien Bourdeauducq 656099a331 artiq_run: sort result output alphabetically 2015-02-17 16:12:21 -07:00
Sebastien Bourdeauducq 614a96a3d7 tools/file_import: use python 3.4 importlib API 2015-02-17 13:07:09 -07:00
Sebastien Bourdeauducq 4558fb3e33 clarify controller terminology 2015-02-16 08:57:15 -07:00
Sebastien Bourdeauducq 61dc177bce units: support direct float conversion 2015-02-16 07:48:05 -07:00
Sebastien Bourdeauducq 021d0d312e novatech409b: do not specify type info in docstrings 2015-02-16 04:43:30 -07:00
Sebastien Bourdeauducq 8c4fb2d534 novatech409b: add sim mode help 2015-02-16 04:39:41 -07:00
Sebastien Bourdeauducq 17611e9899 lda_controller: add description 2015-02-15 17:32:08 -07:00
Joe Britton a3494c57cc add Novatech 409B controller 2015-02-15 17:31:37 -07:00
Sebastien Bourdeauducq e196ef9c48 lda_controller: style 2015-02-15 15:00:55 -07:00
Sebastien Bourdeauducq 17596f4ad8 tools,frontend: print default ports 2015-02-15 14:58:57 -07:00
Sebastien Bourdeauducq 79a5d8a12a tools,frontend: common network arguments 2015-02-15 14:55:43 -07:00
Sebastien Bourdeauducq 6d4b9e5fca frontend: remove lda_client (use artiq_rpctool instead) 2015-02-12 09:34:17 +08:00
Yann Sionneau af4be9a2e2 rpctool: change call syntax 2015-02-12 09:31:04 +08:00
Sebastien Bourdeauducq 39dfbb4162 ddb: support for best effort RPC client 2015-02-12 00:54:54 +08:00
Sebastien Bourdeauducq 1b3603d8bf pc_rpc/BestEffortClient: add docstrings 2015-02-12 00:50:48 +08:00
Yann Sionneau b396f5dd43 pc_rpc: support for method listing, frontend: artiq_rpctool, +fixes by SB 2015-02-12 00:38:30 +08:00
Sebastien Bourdeauducq 6d11da3887 pc_rpc/BestEffortClient: add logging 2015-02-12 00:21:39 +08:00
Sebastien Bourdeauducq a7405dea1c protocols/pc_rpc: add best effort client 2015-02-12 00:14:20 +08:00
Sebastien Bourdeauducq c91705c5d1 ctlmgr: support hostnames in DDB 2015-02-09 20:03:34 +08:00
Sebastien Bourdeauducq 542e047f5a ctlmgr: clean shutdown 2015-02-08 21:44:49 +08:00
Sebastien Bourdeauducq a50c74523f ctlmgr: split command arguments properly 2015-02-08 12:18:57 +08:00
Sebastien Bourdeauducq abb7d9f911 ctlmgr: catch create_subprocess_exec errors and retry 2015-02-08 12:15:22 +08:00
Sebastien Bourdeauducq 96a01efc48 ctlmgr: wait for processes to terminate before starting new ones 2015-02-08 00:59:08 +08:00
Sebastien Bourdeauducq e7d85c5b87 ctlmgr: basic working implementation 2015-02-07 23:52:05 +08:00
Sebastien Bourdeauducq aba749093b ctlmgr: get local bind address, format commands 2015-02-07 01:14:27 +08:00
Sebastien Bourdeauducq 0d0a05a487 sync_struct/Subscriber: add before_receive_cb, export reader/writer 2015-02-07 01:13:15 +08:00
Sebastien Bourdeauducq f9d3bd107e ctlmgr: retry connection to master, print received ddb 2015-02-06 18:58:54 +08:00
Sebastien Bourdeauducq 17685d1e98 controller manager skeleton 2015-02-06 12:17:51 +08:00
Sebastien Bourdeauducq 2f06574381 ddb: controller support 2015-02-05 22:53:31 +08:00
Sebastien Bourdeauducq 4167e669d2 gui/explib: add to artiq top-level import 2015-02-05 19:50:03 +08:00
Sebastien Bourdeauducq 8df1b03f0f artiq_run: add verbosity config 2015-02-04 19:09:54 +08:00
Sebastien Bourdeauducq 0ba07e67b8 artiq/tools/verbosity_args: add help 2015-02-04 19:09:37 +08:00
Sebastien Bourdeauducq 0e65f71705 artiq_run: HDF5 output support 2015-02-04 18:46:55 +08:00
Sebastien Bourdeauducq af79392918 master: basic dumping of results to HDF5 2015-02-04 18:37:57 +08:00
Sebastien Bourdeauducq 2f4a83b97a gui: access to parameter DB from GUI files 2015-02-04 16:13:56 +08:00
Sebastien Bourdeauducq 1b122dd887 sync_struct,gui: refactor Subscriber data distribution to support access to parameter DB from GUI file 2015-02-04 15:06:25 +08:00
Sebastien Bourdeauducq 186aa7fdb7 style 2015-02-04 14:44:39 +08:00
Yann Sionneau fc92a66e51 asyncio: Use ProactorEventLoop on Windows 2015-02-03 22:29:03 +08:00
Sebastien Bourdeauducq c259c4f46f gui/rt_results: display group name in window title 2015-01-31 16:57:50 +08:00
Sebastien Bourdeauducq 2fbe22e15e master,client: support changing real-time results group 2015-01-30 20:36:54 +08:00
Sebastien Bourdeauducq 0ebe56f595 gui/rt_results: support raw view 2015-01-30 19:07:33 +08:00
Yann Sionneau 526887140d Set WARNING as default log level + update documentation 2015-01-30 19:04:04 +08:00
Sebastien Bourdeauducq 37feaf1cea comm_serial: use serial.serial_for_url 2015-01-30 11:47:20 +08:00
Sebastien Bourdeauducq 45c0e2874f master/db: exclude Notifier attributes from kernel attr init 2015-01-29 23:48:39 +08:00
Sebastien Bourdeauducq c0c0137d9a transforms/inline: support skipping of attr init 2015-01-29 23:48:03 +08:00
Sebastien Bourdeauducq 7d6b93d8eb master/db: fix realtime data lookup 2015-01-29 21:45:24 +08:00
Sebastien Bourdeauducq 9aa7155502 gui: use experiment registry 2015-01-29 19:59:44 +08:00
Sebastien Bourdeauducq e7dac4ab43 master: experiment registry 2015-01-29 19:59:16 +08:00
Sebastien Bourdeauducq 26b1282b2b gui/tools/DictSyncer: keep original data 2015-01-29 19:58:25 +08:00
Sebastien Bourdeauducq cba0011431 language/db: default to no realtime results 2015-01-29 19:58:00 +08:00
Sebastien Bourdeauducq 939236a1b5 tools: fix logging config 2015-01-29 18:47:07 +08:00
Yann Sionneau 5ba7218cc1 Factorize argparser for debug level 2015-01-29 10:07:12 +08:00
Sebastien Bourdeauducq 906099c978 gui/rt_results: do not attempt to plot before receiving data 2015-01-28 16:28:13 +08:00
Sebastien Bourdeauducq 71c5115c11 gui: handle exit in explorer 2015-01-27 23:51:23 +08:00
Sebastien Bourdeauducq db3114f79b serve GUI and Glade file from master 2015-01-26 23:37:33 +08:00
Sebastien Bourdeauducq 8904d963d2 gui: add explorer window + rough prototype of control widgets defined with glade 2015-01-26 19:56:15 +08:00
Sebastien Bourdeauducq 82330b3c2a gui: save layout 2015-01-23 19:00:09 +08:00
Sebastien Bourdeauducq f983fdc985 file_db: support default data if file not present 2015-01-23 18:59:56 +08:00
Sebastien Bourdeauducq 9fb42e4952 doc: use sphinx-argparse 2015-01-23 00:52:13 +08:00
Sebastien Bourdeauducq 47aa634ab5 replace periodic schedule with timed schedule 2015-01-23 00:23:00 +08:00
Sebastien Bourdeauducq 569600b607 frontend/pdq2_client: fix entry point 2015-01-22 10:38:47 +08:00
Yann Sionneau c8f2f4b245 Add missing __init__.py 2015-01-22 10:37:58 +08:00
Sebastien Bourdeauducq 0983862c03 pyon/store_file: add newline 2015-01-21 13:52:35 +08:00
Sebastien Bourdeauducq 56ea62b936 doc: fixes and add sync_struct docstrings 2015-01-19 19:20:14 +08:00
Sebastien Bourdeauducq 0c2e960c85 frontend: restore artiq_ prefix 2015-01-17 19:41:00 +08:00
Sebastien Bourdeauducq 3e22fe86b5 reorganize files as per discussion with Robert 2015-01-17 19:38:20 +08:00
Robert Jördens 6cc3a9d973 frontend/*: move to artiq.frontend, make entry_points
* solves the trouble of having to setup PATH and PYTHONPATH in a project
  specific way and keep them changing
* works well with virtualenvs
* works under windows where the shebang is meaningless
* works if your python is not named "python3"

* can use "pip3 install --user --editable ."
  * creates an egg-link in ~/.local/share/... pointing to $PWD
  * generates the scripts and copies them to ~/.local/bin which is likely
    already in your $PATH
  * analogously under windows

* or call scripts as "python3 -m artiq.frontend.master"
2015-01-17 16:02:43 +08:00
Sebastien Bourdeauducq 77dab11746 gui/XYWindow: better bounds 2015-01-15 11:22:44 +08:00
Sebastien Bourdeauducq 5df8ffe08e master: cleaner shutdown 2015-01-15 11:07:55 +08:00
Sebastien Bourdeauducq 95ee6a4951 gui: beginning of realtime plotting 2015-01-14 22:22:33 +08:00
Sebastien Bourdeauducq 33283feacb sync_struct: pass mod to notify callback 2015-01-14 22:21:59 +08:00
Sebastien Bourdeauducq 070788a680 separate master modules 2015-01-14 12:16:49 +08:00
Sebastien Bourdeauducq c0bdc92b18 master: broadcast realtime results 2015-01-14 11:37:08 +08:00
Sebastien Bourdeauducq ebdd92c7c4 management/sync_struct: always publish with root notifier 2015-01-14 11:36:28 +08:00
Sebastien Bourdeauducq 4160d24abc management/sync_struct: export process_mod function 2015-01-14 11:36:04 +08:00
Sebastien Bourdeauducq 8ed6aeb64a collect realtime results in master 2015-01-13 19:12:19 +08:00
Sebastien Bourdeauducq 77a7e592cb management/sync_struct/Notifier: use publish function instead of object 2015-01-13 18:40:59 +08:00
Sebastien Bourdeauducq 2029613c58 management/scheduler: cleanup pending tasks 2015-01-13 18:01:01 +08:00
Sebastien Bourdeauducq f12e721974 sync_struct: support nested structures 2015-01-13 17:31:58 +08:00
Sebastien Bourdeauducq 893c18679f management/worker: improve error reporting 2015-01-13 17:27:36 +08:00
Sebastien Bourdeauducq 891c0d12f2 refactor device/parameter management, immediate parameter updates, start introducing results 2015-01-12 18:51:23 +08:00
Sebastien Bourdeauducq c938e3f4f0 language/context: remove spurious argument 2015-01-10 15:43:13 +08:00
Sebastien Bourdeauducq 06914bbaa3 Make arguments attributes, integrate with AutoContext
This makes them accessible to future "data analysis" methods.
2015-01-10 15:41:35 +08:00
Yann Sionneau 2ad063c377 Lda: sanity checks on attenuation value
- Plus use of dB unit
2015-01-10 00:27:21 +08:00
Yann Sionneau d21211a473 lda: docstring style 2015-01-10 00:27:15 +08:00
Sebastien Bourdeauducq be9f7550b5 master/gui/client: run arguments support 2015-01-07 21:37:07 +08:00
Sebastien Bourdeauducq b63b46786e management/file_import: invalidate linecache if needed 2015-01-07 18:14:52 +08:00
Sebastien Bourdeauducq c11708972d parameter database writeback 2015-01-07 17:50:05 +08:00
dhslichter ff37cdc26c Update driver.py 2015-01-05 17:40:37 -07:00
dhslichter c971a6f1c6 Update driver.py
Fix 32dB limit bug
2015-01-05 15:52:47 -07:00
Sebastien Bourdeauducq 4c4da77cc8 gui: 'remove' buttons functionality 2015-01-05 19:52:58 +08:00
Sebastien Bourdeauducq f9d4056ee9 scheduler: fix cancellations 2015-01-05 19:41:40 +08:00
Sebastien Bourdeauducq 7354117af2 pc_rpc: namespace cleanup 2015-01-05 16:10:16 +08:00
Sebastien Bourdeauducq f9dd5682ee pc_rpc: asyncio client 2015-01-05 16:07:12 +08:00
Sebastien Bourdeauducq 650baa9fc1 gui: factorize dict synchronization 2015-01-02 22:09:02 +08:00
Sebastien Bourdeauducq f352e7f752 master/client: remove function parameter 2015-01-02 17:00:22 +08:00
Sebastien Bourdeauducq 3befafc4e0 master/gui: track last parameter changes 2015-01-02 15:28:45 +08:00
Sebastien Bourdeauducq 15b27a1d14 gui: parameter list update 2015-01-02 14:47:09 +08:00
Sebastien Bourdeauducq 7ada30e07a dpdb: fix saves 2015-01-02 14:45:55 +08:00
Sebastien Bourdeauducq d2a5dfa1ec pc_rpc: multiple target support 2014-12-31 20:13:10 +08:00
Sebastien Bourdeauducq 9cd89a0c50 master: handle dpdb in master process 2014-12-31 17:41:22 +08:00
Sebastien Bourdeauducq 0aa450ad5d pyon/store_file: do not erase file when encoding fails 2014-12-31 17:20:12 +08:00
Sebastien Bourdeauducq cda394e0ce gui: add basic parameters window 2014-12-31 11:11:38 +08:00
Sebastien Bourdeauducq 3566cd1ce0 gui: notebook and enable switch 2014-12-30 23:12:24 +08:00
Sebastien Bourdeauducq 2a60c7475e gui: shorten name 2014-12-30 19:19:26 +08:00
Sebastien Bourdeauducq 1ada80cd6d gui: add icon and app title 2014-12-30 18:40:19 +08:00
Sebastien Bourdeauducq 9de3a08676 gui: split scheduler window 2014-12-30 18:18:23 +08:00
Sebastien Bourdeauducq 6b283d78d3 master/client: periodic schedule monitoring 2014-12-29 18:44:50 +08:00
Sebastien Bourdeauducq 02f3781e65 management/scheduler: fix busywait bug 2014-12-29 13:32:11 +08:00
Sebastien Bourdeauducq 1fdad21f08 master/client: queue pubsub 2014-12-28 18:56:26 +08:00
Sebastien Bourdeauducq f033810e04 management: add sync_struct 2014-12-27 23:27:35 +08:00
Sebastien Bourdeauducq f7232fd3d1 support exceptions raised by RPCs 2014-12-20 21:33:22 +08:00
Yann Sionneau e4897132ad comm_serial.py: Use cross-platform pyserial 2014-12-20 10:19:06 +08:00
Sebastien Bourdeauducq 5d40c2431e py2llvm: support type merge with empty list 2014-12-19 15:19:59 +08:00
Sebastien Bourdeauducq a9b28dff36 transforms/lower_units: support empty list 2014-12-19 14:40:20 +08:00
Sebastien Bourdeauducq 5522378c1c support units in lists 2014-12-19 14:34:23 +08:00
Sebastien Bourdeauducq 0d10ae7580 rpc: support all data types as parameters 2014-12-19 12:46:24 +08:00
Sebastien Bourdeauducq 44e7b99792 py2llvm/VNone: bugfixes 2014-12-19 12:43:13 +08:00
Sebastien Bourdeauducq f31386d15d py2llvm: len() support on lists 2014-12-18 11:13:50 +08:00
Sebastien Bourdeauducq 8af0301185 transforms/tools/value_to_ast: list support 2014-12-17 22:22:44 +08:00
Sebastien Bourdeauducq f3b727b59d py2llvm: replace array with list 2014-12-17 21:54:10 +08:00
Sebastien Bourdeauducq 6ca39f7415 management/scheduler: improve periodic timing precision 2014-12-11 15:57:41 +08:00
Sebastien Bourdeauducq d315268ddb move controllers/clients to frontend 2014-12-11 14:10:15 +08:00
Sebastien Bourdeauducq c3953d85d5 master/client: periodic schedule support 2014-12-10 19:11:13 +08:00
Sebastien Bourdeauducq 347410afa2 master/client: queue display and cancellations 2014-12-10 13:04:18 +08:00
Sebastien Bourdeauducq 0dc4eb02ae setup: install frontend tools, remove nosetest dependency, minor fixes 2014-12-10 12:13:10 +08:00
Sebastien Bourdeauducq 87fdad97ca devices/lda: break off main function 2014-12-10 12:01:31 +08:00
Sebastien Bourdeauducq 08f2aa8503 management/scheduler: replace queue with transparent list + semaphore 2014-12-09 16:26:50 +08:00
Sebastien Bourdeauducq 059608d1fd dds: fix phase modes 2014-12-09 13:50:33 +08:00
Sebastien Bourdeauducq cb48dba29c coredevice: fix external clock ref_period computation 2014-12-09 11:22:55 +08:00
Sebastien Bourdeauducq 597fe57fb3 pyon: unit support 2014-12-09 10:48:47 +08:00
Sebastien Bourdeauducq e814da1ba3 master/client: use dpdb and file import 2014-12-08 19:22:02 +08:00
Sebastien Bourdeauducq 123656e2cd fractions: fix comparison 2014-12-08 19:21:16 +08:00
Sebastien Bourdeauducq fd28bfbb7c artiq_run: reference module by filename 2014-12-08 16:11:31 +08:00
Sebastien Bourdeauducq bfe980d458 py2llvm: distinguish between llvmlite Module and ModuleRef 2014-12-06 15:14:39 +08:00
Sebastien Bourdeauducq 159f632a65 switch to llvmlite 2014-12-05 17:05:43 +08:00
Sebastien Bourdeauducq b93b969e2a doc/pc_rpc: add warning about mutable types 2014-12-04 18:04:54 +08:00
Sebastien Bourdeauducq 4c7749bd01 pyon: partial JSON compatibility 2014-12-03 23:46:59 +08:00
Sebastien Bourdeauducq fd8f3be946 pyon: pretty printing 2014-12-03 23:25:51 +08:00
Sebastien Bourdeauducq 2a95d27770 device and parameter database 2014-12-03 18:20:30 +08:00
Sebastien Bourdeauducq a41009f92a coredevice/comm_dummy: support clock-switching functions 2014-12-03 18:16:18 +08:00
Sebastien Bourdeauducq 5b8f34bae2 language/core/kernel: support return values 2014-12-03 17:21:26 +08:00
Sebastien Bourdeauducq 85b4d70ced pyon: add file I/O functions 2014-12-03 17:18:43 +08:00
Sebastien Bourdeauducq 2a843ea436 language: replace AutoContext 'parameter' string with abstract attributes
This allows specifying default values for parameters, and other data.
2014-12-02 17:19:05 +08:00
Sebastien Bourdeauducq 83d3b97b23 coredevice/comm_serial: give up on garbage received after baudrate change 2014-12-02 16:04:41 +08:00
Sebastien Bourdeauducq cad5933709 transforms/inline: do not writeback bool 2014-12-02 15:53:41 +08:00
Sebastien Bourdeauducq 649fedd656 coredevice/core: fix recover_underflow 2014-12-02 15:31:09 +08:00
Sebastien Bourdeauducq fc690ead75 runtime: support clock switching 2014-12-02 14:06:32 +08:00
Sebastien Bourdeauducq 94218f785e comm_serial: cleanup 2014-12-02 11:09:02 +08:00
Yann Sionneau 20adb57140 comm_serial: allow to use dynamic baudrate 2014-12-02 10:42:14 +08:00
Yann Sionneau 0c20445413 lda: allow to simulate without needing hidapi
This also fixes some old style string formating
2014-12-01 19:39:13 +08:00
Sebastien Bourdeauducq 57d633f48e rtio: remove unnecessary attributes 2014-12-01 17:47:24 +08:00
Sebastien Bourdeauducq cd587e4f12 rtio: do housekeeping in gateware 2014-12-01 17:32:36 +08:00
Sebastien Bourdeauducq d50dbc0e73 coredevice/runtime_exceptions: update RTIO exception behaviour doc 2014-12-01 13:57:25 +08:00
Sebastien Bourdeauducq 901073acf3 asynchronous RTIO 2014-11-30 00:13:54 +08:00
Sebastien Bourdeauducq 9c41f98d70 lda_controller: fix memory leak 2014-11-29 11:19:03 +08:00
Sebastien Bourdeauducq 8f18d8d492 devices: use underscore in filenames to permit import 2014-11-29 11:03:52 +08:00
Yann Sionneau 81ab801fe4 lda: filter reports when waiting for command response 2014-11-29 10:50:41 +08:00
Yann Sionneau 075e540032 lda: separate simulation class 2014-11-29 10:50:12 +08:00
Yann Sionneau b9e7fdb80e lda: add docstring 2014-11-29 10:49:43 +08:00
Sebastien Bourdeauducq 6e219469fe py2llvm: support operations between fractions and floats 2014-11-27 18:52:45 +08:00
Sebastien Bourdeauducq dc27c2e3ad lda: remove excessive verbosity 2014-11-25 19:59:53 +08:00
Sebastien Bourdeauducq 57e25c7af1 lda: minor fixes and refactoring 2014-11-25 19:56:28 +08:00
Yann Sionneau 744e7841c6 devices: initial LDA controller 2014-11-25 19:51:28 +08:00
Sebastien Bourdeauducq a3f981726a units: error checking 2014-11-22 16:56:51 -08:00
Sebastien Bourdeauducq ab88c6d0b8 transforms/lower_units: fix bugs and add unit test 2014-11-21 18:08:14 -08:00
Sebastien Bourdeauducq 35d4f75b65 transforms: PEP8 2014-11-21 15:55:39 -08:00
Sebastien Bourdeauducq 1f92e19f2b transforms/fold_constants: support decimal fractions 2014-11-21 15:51:20 -08:00
Sebastien Bourdeauducq 57cc6479c4 pyon: fraction support 2014-11-21 11:30:37 -08:00
Sebastien Bourdeauducq 64866a0f49 pc_rpc: add init magic string 2014-11-20 14:21:41 -08:00
Sebastien Bourdeauducq 914bdd95d5 runtime: use booleans in syscalls 2014-11-20 12:49:09 -08:00
Sebastien Bourdeauducq dfd779c7c5 core: add underflow recovery function 2014-11-20 12:38:52 -08:00
Sebastien Bourdeauducq 1780759327 dds: phase control (mostly untested) 2014-11-20 12:32:56 -08:00
Sebastien Bourdeauducq e01050b19a transforms/inline: fix default values of positional args 2014-11-19 22:55:34 -08:00
Sebastien Bourdeauducq b736c30cdb coredevice/core: core_com -> comm 2014-11-19 17:44:06 -08:00
Sebastien Bourdeauducq 75df0ae94a coredevice/gpio: replace set() with on()/off() to make API consistent 2014-11-19 12:33:33 -08:00
Sebastien Bourdeauducq 9098d10766 use .py extension on all Python files 2014-11-18 13:50:47 -08:00
Sebastien Bourdeauducq 8b552134a0 transforms/inline: keyword argument and default value support 2014-11-18 13:40:15 -08:00
Sebastien Bourdeauducq abae5c6728 coredevice/dds: round FTW instead of flooring 2014-11-17 18:36:00 -07:00
Sebastien Bourdeauducq cbc629bd8c transforms: assume isinstance(expr, ast.Call) => isinstance(expr.func, ast.Name) after inline 2014-11-15 15:36:26 -07:00
Sebastien Bourdeauducq e02ca0b404 transforms: quantize time before interleaving 2014-11-15 15:26:35 -07:00
Sebastien Bourdeauducq ddc9c3423f transforms/interleave: handle 'at' 2014-11-15 14:50:26 -07:00
Sebastien Bourdeauducq b163c9f7ea test: add optimization transform stack 2014-11-03 18:44:30 +08:00
Sebastien Bourdeauducq 9b93b0cedf unparse: string-based API 2014-11-03 18:14:33 +08:00
Sebastien Bourdeauducq e9e12adceb transforms/inline: object attribute writeback 2014-11-03 18:04:01 +08:00
Sebastien Bourdeauducq f54a2f93d2 remove kernel_attr (inline transform is now smart enough to autodetect) 2014-11-03 14:38:04 +08:00
Sebastien Bourdeauducq a29d7ec6fe transforms/remove_inter_assigns: fix handling of try blocks 2014-11-03 14:35:40 +08:00
Sebastien Bourdeauducq 171d56af54 transforms/remove_inter_assigns: prevent combinatorial explosion 2014-11-03 14:22:24 +08:00
Sebastien Bourdeauducq fba72cc0a2 transforms/remove_inter_assign: support names and dependencies 2014-11-03 11:35:54 +08:00
Sebastien Bourdeauducq 217fe8251b coredevice/core: optimize further 2014-10-31 23:44:07 +08:00
Sebastien Bourdeauducq cf7848c698 transforms/inline: rewrite 2014-10-31 23:43:36 +08:00
Sebastien Bourdeauducq b12fd1d566 transforms/remove_dead_code: bugfixes 2014-10-31 23:17:54 +08:00
Sebastien Bourdeauducq 97329b7fc9 transforms/inline: offload some work to remove_inter_assigns/remove_dead_code 2014-10-30 19:13:01 +08:00
Sebastien Bourdeauducq 1c0c0b691e transforms/remove_inter_assigns: fix bug with array assignment 2014-10-29 20:29:37 +08:00
Sebastien Bourdeauducq 1e8c9837ac transforms: add dead code removal 2014-10-29 20:23:58 +08:00
Sebastien Bourdeauducq be94a8b07c transforms/fold_constants: support comparisons 2014-10-29 18:46:06 +08:00
Sebastien Bourdeauducq c82c631a1d transforms/tools/eval_constant: fix int64 handling 2014-10-29 17:30:35 +08:00
Sebastien Bourdeauducq 70cc0d1766 transform: add intermediate assignment removal 2014-10-29 17:09:45 +08:00
Sebastien Bourdeauducq f012151506 transforms/inline,unroll_loops: fix aliasing problems 2014-10-29 17:09:16 +08:00
Sebastien Bourdeauducq 97ce1d6c2d transforms/inline: fix assign context on attributes 2014-10-29 16:03:20 +08:00
Sebastien Bourdeauducq 4cae5531ec pc_rpc: server identification support 2014-10-28 15:45:56 +08:00
Sebastien Bourdeauducq 8d305e3117 doc: some precisions about controllers 2014-10-28 11:43:06 +08:00
Sebastien Bourdeauducq 2946fa58b8 pc_rpc: factor out asyncio server code 2014-10-27 20:37:37 +08:00
Sebastien Bourdeauducq 1e5b05d4ec pdq2: fix commandline arguments 2014-10-27 20:34:33 +08:00
Sebastien Bourdeauducq 171ed70f2a pc_rpc: remove WaitQuit (use e.g. Ctrl-C on the controller side instead) 2014-10-27 14:33:45 +08:00
Sebastien Bourdeauducq 934442bd07 pc_rpc: document 2014-10-27 13:50:32 +08:00
Sebastien Bourdeauducq 27fc19e415 pyon: add doc 2014-10-27 12:54:59 +08:00
Sebastien Bourdeauducq ee225d5f0d pc_rpc: raise RemoteError on non-existing method RPC attempt 2014-10-25 17:25:17 +08:00
Sebastien Bourdeauducq 489bcb3447 pyon: add bool support 2014-10-25 17:06:44 +08:00
Sebastien Bourdeauducq 6ac3c5d8ae worker: use pyon 2014-10-25 16:31:34 +08:00
Sebastien Bourdeauducq 3f1391f7f2 devices: basic pdq2 controller/client 2014-10-25 11:38:42 +08:00
Sebastien Bourdeauducq 16170c9013 pc_rpc: numpy-compatible serialization 2014-10-25 11:35:21 +08:00
Sebastien Bourdeauducq b13b77e42f pc_rpc: factor WaitQuit code 2014-10-25 11:34:09 +08:00
Sebastien Bourdeauducq 513aa393b0 pc_rpc: avoid 'close' name conflict in client 2014-10-25 11:33:08 +08:00
Sebastien Bourdeauducq f106b238eb pc_rpc: report exception traceback 2014-10-25 11:31:54 +08:00
Sebastien Bourdeauducq 7a10cb8c32 mc: use pc_rpc 2014-10-23 18:48:03 +08:00
Sebastien Bourdeauducq 2aac43c6e5 management: add generic PC/PC RPC 2014-10-23 18:47:26 +08:00
Sebastien Bourdeauducq 85b6a7ca24 pdq2: small improvements based on ML feedback 2014-10-22 17:31:33 +08:00
Sebastien Bourdeauducq b96249339d doc: more precisions on RTIO error handling 2014-10-21 23:56:12 +08:00
Sebastien Bourdeauducq 97f9c9c34f doc: add precisions on RTIO error handling 2014-10-21 23:46:14 +08:00
Sebastien Bourdeauducq 5105b88302 rtio: raise input overflow exception 2014-10-21 23:41:02 +08:00
Sebastien Bourdeauducq 9a14081031 rtio: add pileup count reporting 2014-10-21 23:14:01 +08:00
Sebastien Bourdeauducq 61a50ee53c reorganize for devices/controllers 2014-10-19 23:51:49 +08:00
Sebastien Bourdeauducq caab81974a devices: add pdq2 (incomplete) 2014-10-17 00:13:09 +08:00
Sebastien Bourdeauducq 111bd3092c devices/rtio_core: add LLRTIOOut 2014-10-17 00:12:53 +08:00
Sebastien Bourdeauducq 27d1a5ffb9 devices/dds_core: rename rtio_channel to rtio_switch 2014-10-16 23:36:28 +08:00
Sebastien Bourdeauducq cbf915c2cc devices/runtime: pretty-print 2014-10-14 19:49:39 +08:00
Sebastien Bourdeauducq 88ad4fbf23 pdq2: pep8 2014-10-14 17:02:25 +08:00
Sebastien Bourdeauducq ea0773ccb5 pdq2: split CLI 2014-10-14 16:38:02 +08:00
Robert Jördens de158e0aeb artiq/devices: add pdq2.py 2014-10-14 16:00:52 +08:00
Sebastien Bourdeauducq d22c30650d rtio: add timestamp function 2014-10-14 15:54:10 +08:00
Sebastien Bourdeauducq 754a06c623 transforms/fold_constants: support BoolOp 2014-10-14 15:15:02 +08:00
Sebastien Bourdeauducq b6ac4bdbf3 transforms/tools: support NameConstant 2014-10-14 15:14:39 +08:00
Sebastien Bourdeauducq 2449348f31 devices/runtime: allow 1ms for all initial DDS programming 2014-10-14 12:47:24 +08:00
Sebastien Bourdeauducq 594b3dda74 py2llvm/ast_body: pep8 2014-10-14 00:08:42 +08:00
Sebastien Bourdeauducq a303293e8f devices/dds_core: fix merging of back-to-back pulses of different frequencies 2014-10-13 23:58:32 +08:00
Sebastien Bourdeauducq 8a06f93eb2 transforms/inline: embed bool calls 2014-10-13 23:55:14 +08:00
Sebastien Bourdeauducq d26a9d031b py2llvm: support BoolOp 2014-10-13 23:54:56 +08:00
Sebastien Bourdeauducq 6b173d0a9a py2llvm/base_types: fix not on bool 2014-10-13 19:49:29 +08:00
Sebastien Bourdeauducq 7c4450a963 time_to_cycles: round instead of flooring 2014-10-13 18:35:05 +08:00
Sebastien Bourdeauducq 0158de5ac9 devices/corecom_dummy: fix ref_period 2014-10-13 17:20:12 +08:00
Sebastien Bourdeauducq 74adb39157 devices/dds_core: add frequency_to_ftw and ftw_to_frequency 2014-10-13 17:05:35 +08:00
Sebastien Bourdeauducq 5b05a3f75b transforms/inline: implement 'portable' decorator 2014-10-13 17:04:55 +08:00
Sebastien Bourdeauducq 482f4651ff language/core: add 'portable' decorator 2014-10-13 17:04:32 +08:00
Sebastien Bourdeauducq 4361c7cb49 language/core: support cycles_to_time and time_to_cycles outside of kernel 2014-10-12 22:59:19 +08:00
Sebastien Bourdeauducq 9925568473 devices/runtime: add returns_twice attribute on __eh_setjmp (fixes exception crashes) 2014-10-11 12:59:39 +08:00
Sebastien Bourdeauducq 3ee9a87a00 transforms/lower_time: optimize time_to_cycles(cycles_to_time(x)) -> x 2014-10-11 12:04:14 +08:00
Yann Sionneau e3ef077cb2 Fix module installation
Allow to use setup.py for ARTIQ instead of PYTHONPATH.
Without this, the installation is incomplete.
2014-10-11 00:42:26 +08:00
Sebastien Bourdeauducq c659acb26e transforms/lower_time: fix time_to_cycles/cycles_to_time 2014-10-11 00:35:49 +08:00
Sebastien Bourdeauducq 2920ac85d2 transforms/inline: support attributes on user variables/calls 2014-10-08 18:01:15 +08:00
Sebastien Bourdeauducq e22301ea05 transforms: track units, now() returns seconds, implement time_to_cycles and cycles_to_time 2014-10-06 23:28:56 +08:00
Sebastien Bourdeauducq 1a64e92e75 language/units: add mod 2014-10-06 23:26:35 +08:00
Sebastien Bourdeauducq 0985a53df2 language/core: add time_to_cycles and cycles_to_time 2014-10-06 23:26:21 +08:00
Sebastien Bourdeauducq 9caaaeb414 py2llvm/fractions: add lt, le, gt, ge comparisons 2014-10-06 23:22:05 +08:00
Sebastien Bourdeauducq 8612a8a9ca devices/dds_core: remove stale kernel_attr 2014-10-06 17:23:00 +08:00
Sebastien Bourdeauducq 70fc0f6ce7 language/units: better support for ops on different dimensions 2014-10-05 23:15:25 +08:00
Sebastien Bourdeauducq 6c44fe0a87 language/units: fix printing 2014-10-05 21:35:24 +08:00
Sebastien Bourdeauducq 2a19d7d32b language/units: use only a string to identify units 2014-10-05 21:01:08 +08:00
Sebastien Bourdeauducq 2944592201 Remove microcycle unit
Introducing it complicates things and has no advantage with good rational arithmetic support.
2014-10-05 17:54:22 +08:00
Sebastien Bourdeauducq 59194176a9 add rudimentary master/controller/client 2014-10-05 16:25:31 +08:00
Sebastien Bourdeauducq 76fed11d59 rtio: raise RTIOSequenceError exceptions when events are not submitted in-order 2014-09-30 19:32:11 +08:00
Sebastien Bourdeauducq 73d0a84b44 doc: various cleanups 2014-09-30 18:10:40 +08:00
Sebastien Bourdeauducq cb036a30c7 devices/dds_core: document 2014-09-30 17:38:52 +08:00
Sebastien Bourdeauducq 5ac42e42c1 rename artiq.language.std -> artiq 2014-09-30 17:38:02 +08:00
Sebastien Bourdeauducq 821834891e language/core: use 'var' for class attribute docstring 2014-09-30 16:43:27 +08:00
Sebastien Bourdeauducq 05d8dde412 language/core: pass docstrings through kernel decorator 2014-09-30 16:43:00 +08:00
Sebastien Bourdeauducq 5099643f84 devices/rtio_core: rename RTIOCounter to RTIOIn and document 2014-09-30 16:42:07 +08:00
Sebastien Bourdeauducq c95f5bdff3 transforms/inline: strip docstrings 2014-09-30 00:46:14 +08:00
Sebastien Bourdeauducq d3e70ec53d language/units: cleanup and add docstrings 2014-09-29 23:41:37 +08:00