whitequark
fec5c2ebf0
transforms.interleaver: add a diagnostic for interleave inlining failure.
2015-11-24 02:57:03 +08:00
whitequark
8527e306c3
testbench.embedding: use dmgr to get core and export it.
2015-11-24 02:02:34 +08:00
whitequark
2bfc72fba9
testbench.embedding: fix ref_period mismatch.
2015-11-24 00:54:20 +08:00
whitequark
d3f0059cab
compiler.iodelay: correctly fold max(0, [0, ]...).
2015-11-24 00:46:55 +08:00
whitequark
9bc62fa3d2
transforms.iodelay_estimator: correctly handle functions with empty body.
2015-11-24 00:46:26 +08:00
whitequark
32fe4a8a0c
transforms.llvm_ir_generator: don't assert on inlined functions.
2015-11-24 00:20:33 +08:00
whitequark
abb36b42be
compiler.iodelay: fold and eval SToMU to an int, not float.
2015-11-24 00:19:33 +08:00
whitequark
178ff74da2
transforms.interleaver: inline calls.
2015-11-24 00:02:07 +08:00
whitequark
2a82eb7219
compiler.ir: return dict from Delay.substs, not pair iterable.
2015-11-24 00:01:10 +08:00
whitequark
02f2763ea8
compiler.iodelay: always fully fold SToMU and MUToS.
2015-11-23 23:59:59 +08:00
whitequark
f3da227e2d
compiler.ir: change argument order for BasicBlock.insert.
2015-11-23 23:59:25 +08:00
whitequark
f0fd6cd0ca
compiler.algorithms.inline: implement.
2015-11-23 23:58:37 +08:00
whitequark
a4525b21cf
compiler.ir: print even blocks without predecessors.
2015-11-23 23:55:12 +08:00
whitequark
d92b3434a0
compiler.ir: print basic blocks in reverse postorder for readability.
2015-11-23 21:44:38 +08:00
whitequark
c73b2c1a78
compiler.ir: fix typo.
2015-11-23 21:21:01 +08:00
whitequark
0bf425eefa
compiler.ir: maintain use lists while mutating instructions.
2015-11-23 19:18:58 +08:00
whitequark
03b4e4027c
transforms.interleaver: fix IR type/value mismatch.
2015-11-23 18:53:42 +08:00
whitequark
9fc7a42036
pipistrello: expose LED{1..4} as RTIO channels.
2015-11-23 18:26:45 +08:00
whitequark
73845279ae
transforms.interleaver: determine when inlining is not necessary.
2015-11-23 18:08:33 +08:00
Sebastien Bourdeauducq
de30a4b060
master/worker: print short exception info in first log entry of worker error
2015-11-22 23:26:32 +08:00
whitequark
af43c66149
artiq_compile: set file_import prefix, like in artiq_run.
2015-11-21 17:37:14 +08:00
whitequark
a01e328b4a
transforms.interleaver: don't assume all delay expressions are folded.
2015-11-21 17:24:00 +08:00
whitequark
5cd12ffd28
compiler.iodelay: fold MUToS and SToMU.
2015-11-21 17:23:20 +08:00
whitequark
82b470891f
transforms.interleaver: handle function calls (as atomic so far).
...
This commit solves issue #2 described in 50e7b44; a function call
is now a valid decomposition for a delay instruction, and this
metadata is propagated when the interleaver converts delays.
However, the interleaver does not yet detect that a called function
is compound, i.e. it is not correct.
2015-11-21 03:34:24 +08:00
whitequark
57dd163d37
transforms.artiq_ir_generator: fix decomposition of explicit delay_mu().
2015-11-21 03:27:06 +08:00
whitequark
cb3b811fd7
compiler: maintain both the IR and iodelay forms of delay expressions.
...
After this commit, the delay instruction (again) does not generate
any LLVM IR: all heavy lifting is relegated to the delay and delay_mu
intrinsics. When the interleave transform needs to adjust the global
timeline, it synthesizes a delay_mu intrinsnic. This way,
the interleave transformation becomes composable, as the input and
the output IR invariants are the same.
Also, code generation is adjusted so that a basic block is split off
not only after a delay call, but also before one; otherwise, e.g.,
code immediately at the beginning of a `with parallel:` branch
would have no choice but to execute after another branch has already
advanced the timeline.
This takes care of issue #1 described in 50e7b44
and is a step
to solving issue #2 .
2015-11-21 03:22:47 +08:00
whitequark
50e7b44d04
compiler: actually implement interleaving correctly (calls are still broken).
...
The previous implementation was completely wrong: it always advanced
the global timeline by the same amount as the non-interleaved basic
block did.
The new implementation only advances the global timeline by
the difference between its current time and the virtual time of
the branch, which requires it to adjust the delay instructions.
Previously, the delay expression was present in the IR twice: once
as the iodelay.Expr transformation-visible form, and once as regular
IR instructions, with the latter form being passed to the delay_mu
builtin and advancing the runtime timeline.
As a result of this change, this strategy is no longer valid:
we can meaningfully mutate the iodelay.Expr form but not the IR
instruction form. Thus, IR instructions are no longer generated for
delay expressions, and the LLVM lowering pass now has to lower
the iodelay.Expr objects as well.
This works OK for flat `with parallel:` expressions, but breaks down
outside of `with parallel:` or when calls are present. The reasons
it breaks down are as follows:
* Outside of `with parallel:`, delay() and delay_mu() must accept
any expression, but iodelay.Expr's are not nearly expressive
enough. So, the IR instruction form must actually be kept as well.
* A delay instruction is currently inserted after a call to
a user-defined function; this delay instruction introduces
a point where basic block reordering is possible as well as
provides delay information. However, the callee knows nothing
about the context in which it is called, which means that
the runtime timeline is advanced twice. So, a new terminator
instruction must be added that combines the properties of delay
and call instructions (and another for delay and invoke as well).
2015-11-21 00:02:47 +08:00
whitequark
73c358a59a
Reformat.
2015-11-20 23:33:06 +08:00
whitequark
cb9e7d15bf
compiler.iodelay: subtraction certainly shouldn't be commutative.
2015-11-20 22:15:03 +08:00
whitequark
cc623c13b4
Reformat.
2015-11-20 21:45:34 +08:00
whitequark
d0f86e05d0
transforms.interleaver: add safety check.
2015-11-20 17:27:04 +08:00
whitequark
88b7990714
transforms.iodelay_estimator: fail statements with indeterminate delay inside `with parallel`.
2015-11-20 17:10:25 +08:00
whitequark
28fa68730a
Merge branch 'master' into new-py2llvm
2015-11-20 15:55:29 +08:00
Sebastien Bourdeauducq
9826b19c9a
gui/scan: adapt layout to show more decimals
2015-11-20 11:20:15 +08:00
whitequark
00ec574d73
transforms.interleaver: implement (without inlining).
2015-11-20 00:03:26 +08:00
whitequark
025bfbe746
transforms.llvm_ir_generator: accept delay instructions.
...
The delay instruction is just like a branch (discontinuity
in instruction flow), but it also carries metadata: how long
did the execution of its basic block take. This metadata only
matters during inlining and interleaving, so we treat it here
as a mere branch.
2015-11-19 23:55:52 +08:00
whitequark
9639a831bc
transforms.artiq_ir_generator: correctly emit IfExpT with control flow.
...
This can happen with nested if expressions, as well as if
the if expression includes delays.
2015-11-19 23:44:39 +08:00
whitequark
2543daa5cf
transforms.artiq_ir_generator: don't emit delay instruction for zero delay.
...
Call nodes with iodelay=Const(0) can be generated outside of
`with parallel:`, where Interleaver won't and LLVMIRGenerator can't
lower them.
2015-11-19 23:24:46 +08:00
whitequark
58db347e01
transforms.iodelay_estimator: fix uninitialized access.
2015-11-19 23:23:39 +08:00
Sebastien Bourdeauducq
108aed569e
gui/models/DictSyncTreeSepModel: add getitem
2015-11-17 22:53:11 +08:00
Sebastien Bourdeauducq
537fa2287b
gui/models/DictSyncTreeSepModel: fix item row update
2015-11-17 22:39:46 +08:00
Sebastien Bourdeauducq
7bebc52959
gui/explorer: reduce impact of Qt selection display bug
2015-11-17 22:38:01 +08:00
Sebastien Bourdeauducq
250ab6b489
gui/explorer: tree view
2015-11-17 19:46:26 +08:00
Sebastien Bourdeauducq
9c5db288a5
gui/datasets: tree view
2015-11-17 19:46:17 +08:00
Sebastien Bourdeauducq
107d8f0ffa
gui/models: add DictSyncTreeSepModel
2015-11-17 19:45:28 +08:00
whitequark
48a2bb10d5
transforms.interleaver: add boilerplate.
2015-11-17 05:22:20 +03:00
whitequark
de9d7eb2e4
compiler: add `delay` IR instruction.
2015-11-17 05:16:43 +03:00
whitequark
956d2afcb2
compiler.iodelay: fold Max further.
2015-11-17 03:06:07 +03:00
whitequark
7d2fca291d
compiler.iodelay: add missing import.
2015-11-17 01:30:19 +03:00
whitequark
e619154c81
transforms.iodelay_estimator: fix handling of `with sequential`.
2015-11-17 01:22:48 +03:00
whitequark
506725f78a
transforms.iodelay_estimator: fix handling of methods.
2015-11-17 01:19:22 +03:00
whitequark
b0c6b70971
transforms.asttyped_rewriter: fix class redefinition diagnostic.
2015-11-17 01:17:25 +03:00
whitequark
9e0a5b9404
transforms.iodelay_estimator: skip statements, not modules on _UnknownDelay.
2015-11-17 01:00:10 +03:00
whitequark
44d0a35409
transforms.iodelay_estimator: actually iterate to fixpoint.
2015-11-17 00:59:40 +03:00
whitequark
10f82ff2c8
transforms.iodelay_estimator: do not unify indeterminate delays.
2015-11-17 00:59:09 +03:00
whitequark
841e01a8bb
compiler.iodelay: fix typo in Var.__eq__.
2015-11-17 00:53:12 +03:00
whitequark
a2d73c8b05
compiler.types: dump type variable iodelay explicitly.
2015-11-17 00:51:56 +03:00
whitequark
e67705dc27
compiler.iodelay: fix typo in BinOp.__eq__.
2015-11-17 00:51:37 +03:00
whitequark
629aacec09
compiler.iodelay: add forgotten Conv.__eq__.
2015-11-17 00:51:22 +03:00
whitequark
fd46690cf5
compiler: make IR dumps vastly more readable.
2015-11-17 00:23:34 +03:00
whitequark
eefa9e2ea6
transforms.inferencer: fix typo.
2015-11-17 00:02:15 +03:00
Sebastien Bourdeauducq
723ef71a87
master/repository: fix experiment name conflict handling
2015-11-16 22:46:40 +08:00
whitequark
c8cfa7c7bd
compiler: give suggestions in diagnostics for unbound variable.
...
This uses the Jaro-Winkler edit distance, which seemed like the best
fit for identifiers, even though it is intended for people's names.
2015-11-15 23:09:40 +03:00
Sebastien Bourdeauducq
d32c2c091f
master: scan subdirectories in repos
2015-11-14 00:06:52 +08:00
Sebastien Bourdeauducq
3cbd7c4c13
gui: support multiple log docks
2015-11-12 01:13:57 +08:00
Sebastien Bourdeauducq
fa89e165b2
gui/datasets: fix display update
2015-11-11 17:09:35 +08:00
Sebastien Bourdeauducq
11fbea4161
sync_struct/Subscriber: support lists of notify callbacks
2015-11-11 17:09:07 +08:00
Sebastien Bourdeauducq
62c0eb85b1
gui/console: use network clients directly
2015-11-11 17:02:51 +08:00
Sebastien Bourdeauducq
4166f4e928
frontend: use atexit_register_coroutine in other tools
2015-11-11 16:22:12 +08:00
Sebastien Bourdeauducq
69f5e378fe
sync_struct/Subscriber: remove unused multi-target functionality
2015-11-11 12:44:20 +08:00
Sebastien Bourdeauducq
77330c7c68
gui/moninj: suppress spurious core device address warnings
2015-11-11 12:43:25 +08:00
Sebastien Bourdeauducq
c3f99eda8f
gui: centralize subscribers
2015-11-11 12:13:19 +08:00
Sebastien Bourdeauducq
ae99af27ee
runtime,gateware: use new misoc identifier
2015-11-10 22:44:38 +08:00
whitequark
9670939ca6
compiler.analyses.domination: fix PostDominatorTree.
2015-11-09 12:49:27 +03:00
whitequark
19fae9181c
compiler.analyses.domination: implement new dominator tree algorithm.
2015-11-09 11:51:54 +03:00
Sebastien Bourdeauducq
44c0c617f3
master/worker: add ARTIQ version to HDF5 output
2015-11-09 12:32:29 +08:00
Sebastien Bourdeauducq
2df2e141f7
update versioneer
2015-11-09 12:19:01 +08:00
Sebastien Bourdeauducq
594162325b
use versioneer
2015-11-09 11:33:38 +08:00
Sebastien Bourdeauducq
3c63e5bc61
runtime/liblwip: fix symbolic link creation
2015-11-09 11:07:22 +08:00
Sebastien Bourdeauducq
e749bae302
package everything to rebuild core device binaries
2015-11-09 10:47:14 +08:00
whitequark
a0c6f75f9b
compiler.types: fix obsolete iodelay references.
2015-11-07 15:14:19 +03:00
whitequark
51f04f6311
Explicitly use the python3.5 binary everywhere.
2015-11-07 13:39:39 +03:00
whitequark
0b5e1d174c
Unbreak artiq_flash.sh.
2015-11-07 13:26:14 +03:00
whitequark
d6d0a3e3e9
Merge branch 'master' into new-py2llvm
2015-11-07 12:57:18 +03:00
whitequark
da622937f6
Merge commit 'd0b5c3ba7fb' into new-py2llvm
2015-11-07 09:41:34 +03:00
Sebastien Bourdeauducq
a7c9c95085
gui/explorer: support requesting termination of all instances
2015-11-05 19:04:10 +08:00
Sebastien Bourdeauducq
ad5a32fb6e
targets/kc705: remove unneeded argument on qc2
2015-11-04 20:09:37 +08:00
Sebastien Bourdeauducq
38740a4abe
runtime: log startup kernel start
2015-11-04 12:34:18 +08:00
Sebastien Bourdeauducq
087c2fd078
runtime: fix generation of service_table.h
2015-11-04 11:22:56 +08:00
Sebastien Bourdeauducq
3404a6565b
frontend/artiq_flash: reorganize device binaries
2015-11-04 10:40:46 +08:00
Sebastien Bourdeauducq
e26147b2ac
gateware,runtime: use new migen/misoc
2015-11-04 00:35:03 +08:00
Sebastien Bourdeauducq
644a410c90
thorlabs_tcube: fix -P case handling
2015-11-03 17:55:00 +08:00
whitequark
3a1b77ae6b
analyses.domination: add PostDominatorTree.
2015-11-01 09:49:39 +03:00
Sebastien Bourdeauducq
a2c074cc33
gui: fix RPC client teardown
2015-11-01 00:03:46 +08:00
Sebastien Bourdeauducq
8e24a018ea
gui/log: fix filter initialization race condition
2015-11-01 00:01:45 +08:00
Sebastien Bourdeauducq
f57145c4f3
gui: support triggering repository rescan
2015-10-31 23:58:39 +08:00
Sebastien Bourdeauducq
0a36b03a12
gui/log: work around Qt scrolling bug. Closes #151
2015-10-31 10:25:01 +08:00
Sebastien Bourdeauducq
d8b98ae5d4
gui/log: fix performance problems
2015-10-31 00:34:14 +08:00
Sebastien Bourdeauducq
b61eb866b6
gui: log freetext filter
2015-10-30 19:58:33 +08:00
Sebastien Bourdeauducq
f3ee97a4ff
fix typo
2015-10-30 19:58:15 +08:00
Sebastien Bourdeauducq
58f55fc630
artiq_flash: check that xc3sprog is found. closes #162
2015-10-30 15:52:03 +08:00
Sebastien Bourdeauducq
2c77c80b4f
master: expose more scheduler APIs to the experiments
2015-10-30 13:41:18 +08:00
whitequark
f70f7fb89b
Merge branch 'master' into new-py2llvm
2015-10-30 04:29:35 +03:00
Sebastien Bourdeauducq
0e375e4980
gui: fix shortcut pipeline
2015-10-30 00:50:18 +08:00
Sebastien Bourdeauducq
f0eed1182a
protocols/pyon: improve error reporting of non-serializable type
2015-10-29 09:42:45 +08:00
Sebastien Bourdeauducq
32c95f24d0
worker: reduce some logging levels
2015-10-29 09:34:41 +08:00
Sebastien Bourdeauducq
0d53f7ab0d
ignore ProcessLookupError when killing subprocesses. Closes #167
2015-10-28 20:57:28 +08:00
Sebastien Bourdeauducq
40b4129c65
Only support scalars and numpy arrays in HDF5 output. Update documentation. Closes #145
2015-10-28 18:33:42 +08:00
Sebastien Bourdeauducq
ec328cf5e1
master/worker_db: reduce exception backtrace clutter of get_dataset. Closes #168
2015-10-28 17:50:48 +08:00
Sebastien Bourdeauducq
828b48ad89
master/scheduler: reduce logging severity of worker exception backtraces to debug
2015-10-28 17:48:50 +08:00
Sebastien Bourdeauducq
1ada15ae5d
master: simplify worker/parent RPC
2015-10-28 17:35:57 +08:00
Sebastien Bourdeauducq
4e35a247d1
pdq2_client: remove unnecessary calls
2015-10-28 09:48:14 +08:00
Sebastien Bourdeauducq
3789273e29
pdq2_client: remove init call
2015-10-28 09:47:01 +08:00
Sebastien Bourdeauducq
d708002fb9
devices/pdq2: add RPC getter functions
2015-10-28 09:46:17 +08:00
Sebastien Bourdeauducq
179416dac7
gui: delete shortcuts
2015-10-27 18:20:25 +08:00
Sebastien Bourdeauducq
f872d92d22
gui/schedule: improve delete status bar message
2015-10-27 18:20:11 +08:00
Sebastien Bourdeauducq
138ba7e2fa
gui: add addItems to populate log level comboboxes
2015-10-27 18:10:31 +08:00
Sebastien Bourdeauducq
967d4eda63
gui: shortcut support
2015-10-27 17:59:34 +08:00
Sebastien Bourdeauducq
9f2ff32948
test/sync_struct: nparray mutation
2015-10-26 23:41:05 +08:00
Sebastien Bourdeauducq
a6d38b8a97
gui/datasets: fix source decoding
2015-10-26 00:32:49 +08:00
Sebastien Bourdeauducq
fe809f81ab
protocols/pyon: make received numpy arrays writable
2015-10-26 00:21:51 +08:00
Sebastien Bourdeauducq
62bcadfa44
gui/explorer: change submit shortcut to CTRL+ENTER
2015-10-25 23:21:27 +08:00
Sebastien Bourdeauducq
5ae9bbc0ca
gui/explorer: add CTRL+S shortcut to submit
2015-10-24 19:19:12 +08:00
Sebastien Bourdeauducq
53a9d7eb9a
gui/explorer: more compact layout
2015-10-24 16:00:20 +08:00
Sebastien Bourdeauducq
fcd29492f9
worker_db: support more types in HDF5 output. Closes #144 . Closes #121
2015-10-24 10:54:59 +08:00
Sebastien Bourdeauducq
3044a053e1
databases: assume empty dataset_db if file not present. Closes #156
2015-10-24 10:15:20 +08:00
Sebastien Bourdeauducq
b0ef0d205a
gui/datasets: do not crash when a display data is unavailable
2015-10-24 09:57:42 +08:00
whitequark
30842a7174
conda: include udev rules and artiq_flash.sh in artiq package.
2015-10-22 17:18:59 +03:00
Sebastien Bourdeauducq
e4165aecf2
gui/displays: do not test for empty list using bool conversion (breaks for numpy arrays). Closes #153
2015-10-22 11:00:11 +08:00
Sebastien Bourdeauducq
50809e02c2
tools/short_format: display shape of ndarrays
2015-10-21 11:13:46 +08:00
Sebastien Bourdeauducq
a58e41684b
protocols/logging: revert debug hack that was incorrectly committed
2015-10-21 09:54:39 +08:00
Sebastien Bourdeauducq
ec02bea054
controllers/thorlabs_tcube: accept any case for -P. Closes #150
2015-10-21 09:17:39 +08:00
Sebastien Bourdeauducq
d13b368a65
build logging into worker
2015-10-20 18:11:50 +08:00
Sebastien Bourdeauducq
fbe33b71f4
gui: add some tooltips
2015-10-20 18:09:36 +08:00
Sebastien Bourdeauducq
451f39f5b8
gui/explorer: disable calendar popup
2015-10-20 17:56:23 +08:00
Sebastien Bourdeauducq
1bc4061620
protocols: better workaround for asyncio issue 263
2015-10-20 00:35:33 +08:00
Sebastien Bourdeauducq
71d2e3a69f
protocols/sync_struct: disconnection can also cause BrokenPipeError
2015-10-20 00:35:02 +08:00
Sebastien Bourdeauducq
da70f8b88c
test/pc_rpc: test AutoTarget
2015-10-19 20:20:53 +08:00
Sebastien Bourdeauducq
03e317780b
device_db: make best_effort parameter optional for controllers
2015-10-18 14:37:08 +08:00
Sebastien Bourdeauducq
a5606768ad
device_db: make target_name parameter optional for controllers
2015-10-18 14:35:53 +08:00
Sebastien Bourdeauducq
5947f54855
pc_rpc: autotarget support
2015-10-18 14:34:30 +08:00
Sebastien Bourdeauducq
661b9bfbfa
tools/short_format: increase max string length
2015-10-18 13:32:29 +08:00
Sebastien Bourdeauducq
d7b41207da
tools/short_format: display booleans directly
2015-10-18 13:31:36 +08:00
Sebastien Bourdeauducq
b9c1d3ef12
language, gui: do not automatically insert scale prefixes
2015-10-18 00:52:16 +08:00
Sebastien Bourdeauducq
da83212c79
gui: autodetect whether QSortFilterProxyModel is in QtCore or QtGui
2015-10-17 19:11:17 +08:00
Sebastien Bourdeauducq
7f5e264971
ctlmgr: add hostname to log source
2015-10-17 10:58:15 +08:00
Sebastien Bourdeauducq
5899825eef
import order
2015-10-17 10:41:52 +08:00
Sebastien Bourdeauducq
797bf9830c
language: add basic logging initializer for experiments
2015-10-17 10:39:21 +08:00
Sebastien Bourdeauducq
04a049b93d
master: timestamp logfiles
2015-10-17 10:26:54 +08:00
Sebastien Bourdeauducq
60ed88f3d9
worker: separate stdout/stderr for forwarding
2015-10-17 10:22:20 +08:00
Sebastien Bourdeauducq
f6fd7ecef2
logging: handle newlines in messages
2015-10-17 10:21:03 +08:00
Sebastien Bourdeauducq
6c856025cc
protocol/logging: workaround for asyncio's inability to detect connection closes on writes
2015-10-16 21:28:39 +08:00
Sebastien Bourdeauducq
f332c1d3cc
ctlmgr: forward controller logs
2015-10-16 20:08:11 +08:00
Sebastien Bourdeauducq
786dc14057
protocols/logging: fix split, warn on format errors
2015-10-16 20:07:31 +08:00
Sebastien Bourdeauducq
9e96a687e2
ctlmgr: forward log to master
2015-10-16 18:35:58 +08:00
Sebastien Bourdeauducq
9bb94f0f59
master/log: move formatter into LogBufferHandler
2015-10-16 18:35:30 +08:00
Sebastien Bourdeauducq
cee8f288de
protocols/logging: add LogForwarder
2015-10-16 18:35:02 +08:00
Sebastien Bourdeauducq
c0796249b3
protocols/logging: document, take level numbers for consistency with master publish
2015-10-16 18:34:37 +08:00
Sebastien Bourdeauducq
cbda753f44
master: TCP server for remote logging
2015-10-16 00:53:35 +08:00
Sebastien Bourdeauducq
9e2e233fef
master: log file support
2015-10-15 23:47:31 +08:00
whitequark
b91ffa1b38
ir: fix default argument fiasco.
2015-10-14 17:02:59 +03:00
Sebastien Bourdeauducq
49acd10dfd
gui: fix data update in DictSyncModel/ListSyncModel
2015-10-14 21:32:26 +08:00
Sebastien Bourdeauducq
f3b3bf3036
gui: log filtering
2015-10-14 21:21:19 +08:00
whitequark
5d64df829e
transforms.artiq_ir_generator: fix devirtualized call annotation.
2015-10-14 16:12:00 +03:00
whitequark
e9adfd639e
Merge branch 'master' into new-py2llvm
2015-10-14 16:09:57 +03:00
Sebastien Bourdeauducq
f85554486a
gui: dataset filtering with QSortFilterProxyModel
2015-10-14 19:29:58 +08:00
Sebastien Bourdeauducq
86e201c6a0
master/log: parse names, better filtering, cleanup
2015-10-14 16:30:57 +08:00
Sebastien Bourdeauducq
da159f11d4
gui/log: ensure black/white colors
2015-10-14 16:30:16 +08:00
Sebastien Bourdeauducq
9f04af63e6
scheduler: raise logging severity of errors
2015-10-14 16:02:22 +08:00
Sebastien Bourdeauducq
c00bce3967
master,client,gui: logging sources, timestamps, levels
2015-10-14 01:06:57 +08:00
whitequark
bd5b324fc2
Merge branch 'master' into new-py2llvm
2015-10-13 19:24:45 +03:00
Sebastien Bourdeauducq
fc4791bbbe
doc: new dataset API
2015-10-13 18:11:17 +08:00
Sebastien Bourdeauducq
1d14975bd5
worker: cleaner termination on exception in user code, improve unittest
2015-10-13 01:11:57 +08:00
Sebastien Bourdeauducq
fbf94f9b6d
Merge branch 'master' of github.com:m-labs/artiq
2015-10-12 19:46:52 +08:00
Sebastien Bourdeauducq
3cec176318
get_ddb -> get_device_db
2015-10-12 19:46:31 +08:00
Sebastien Bourdeauducq
5c4ed7a9bd
fix imports
2015-10-12 19:46:14 +08:00
whitequark
9e64f7dc3a
Adapt old compiler to Python 3.5 AST.
2015-10-12 14:45:31 +03:00
Sebastien Bourdeauducq
b51910fa42
compile,coretool: use new dataset API
2015-10-12 19:32:16 +08:00
Sebastien Bourdeauducq
a754d4b5f5
test: use new dataset API
2015-10-12 19:20:04 +08:00
Sebastien Bourdeauducq
a83ffb3dce
protocols: move FlatFileDB into pyon
2015-10-12 18:19:28 +08:00
Sebastien Bourdeauducq
22bffa98b5
client: use short_format in dataset display
2015-10-12 18:10:58 +08:00
Sebastien Bourdeauducq
e6e93ab6ed
gui: dataset search
2015-10-12 17:31:55 +08:00
Sebastien Bourdeauducq
3923dd83c2
protocols/file_db: remove unneeded hooks feature
2015-10-12 17:20:01 +08:00
Sebastien Bourdeauducq
97accd2540
merge parameters and results into datasets
2015-10-12 17:18:23 +08:00
Sebastien Bourdeauducq
36c3f022aa
devices/novatech409b: remove unwanted calls to set_simultaneous_update
2015-10-12 16:15:04 +08:00
Joe Britton
b5cc680fdb
devices/novatech409b: improve simultaneous update API
2015-10-12 16:13:51 +08:00
Sebastien Bourdeauducq
7414b90da3
language/scan: add len() support
2015-10-12 16:06:12 +08:00
Sebastien Bourdeauducq
cd3b590962
language/scan: add missing attributes to RandomScan
...
Reported by Joe
2015-10-11 10:05:27 +08:00
whitequark
32ce33a1f9
transforms.artiq_ir_generator: emit ir.Parallel for with parallel:.
2015-10-09 03:10:39 +03:00
whitequark
48f1f48f09
transforms.artiq_ir_generator: devirtualize method calls.
2015-10-09 02:27:52 +03:00
whitequark
0bb793199f
transforms.artiq_ir_generator: devirtualize closure calls.
2015-10-09 01:32:27 +03:00
whitequark
6922bd5638
analyses.devirtualization: look up functions in outer scopes.
2015-10-09 01:32:05 +03:00
whitequark
844d37ff18
compiler.testbench.embedding: allow compiling only.
2015-10-09 01:24:44 +03:00
whitequark
7bcba52d6a
compiler.embedding: fix loc.
2015-10-09 00:53:14 +03:00
whitequark
7043b333a7
transforms.devirtualizer → analyses.devirtualization.
2015-10-09 00:29:31 +03:00
whitequark
962dd9de13
transforms.devirtualizer.MethodResolver: implement.
2015-10-07 22:33:08 +03:00
whitequark
6ac82e1439
transforms.devirtualizer.FunctionResolver: implement.
2015-10-07 22:33:00 +03:00
whitequark
42b0089a4c
transforms.asttyped_rewriter: simplify.
2015-10-07 22:03:24 +03:00
Sebastien Bourdeauducq
5f89d1a78f
doc: document core device driver. Closes #119
2015-10-06 18:12:57 +08:00
Sebastien Bourdeauducq
139072d402
Graceful experiment termination. Closes #76
2015-10-06 13:50:00 +08:00