The Wayback Machine - https://web.archive.org/web/20200716213526/https://github.com/topics/jit
Skip to content
#

jit

Here are 278 public repositories matching this topic...

MikeHopcroft
MikeHopcroft commented May 17, 2016

This strategy is used in BitFunnel. Just need to define COMBINE_FILE_LISTS() macro in the top level CMakeLists.txt and then use in the lower level CMakeLists.txt files to replace

if (NATIVEJIT_PLATFORM_WINDOWS)
set(CPPFILES ${CPPFILES} ${WINDOWS_CPPFILES})
set(PUBLIC_HFILES ${PUBLIC_HFILES} ${WINDOWS_PUBLIC_HFILES})
set(PRIVATE_HFILES ${PRIVATE_HFILES} ${WINDOWS_PRIVATE_HFILES})
else (NATI

Keno
Keno commented Feb 1, 2019

Say you accidentally write something like this in a package:

foo() = iterate(...)
iterate(a::Foo) = ...

The second definition is wrong. What was intended was to extend Base.iterate. Now, if I add the missing Base., revise will delete the method, but the binding in foo will still resolve to the (now methodless) iterate function in my module. Not sure this can be addressed in the

AlexDaniel
AlexDaniel commented Jun 18, 2019

Example here:
https://github.com/MoarVM/MoarVM/blob/8e078a2fed5225332ed5916d9ce8d3f14954a2fc/src/core/threads.c#L171

The error message appeared during Blin run:

🥞🥞🥞 Testing Benchmark::Plot (new)
⏳ 901 out of 1305 modules processed
🥞🥞🥞 Testing App::Pray (new)
🥞🥞🥞 Testing Cro::HTTP (new)
🥞🥞🥞 Testing Auth::SCRAM (new)
🥞🥞🥞 Testing CPAN::Uploader::Tiny (new)
MoarVM panic: Could not spaw
yurivict
yurivict commented Jan 6, 2020

The README says:

[...] you'll need an SD card image for your DE10 with a valid installation of Cascade. Cascade can generate this image for you automatically [...]

The obvious question is "how". Is there a command that generates the image?

I have a working DE Nano, it has linux running, it is connected through the Ethernet.
Is this image not sufficient, and Cascade should generate

soc
soc commented Dec 25, 2019

(This is probably a good beginner issue.)

There are a few operations that operate on integers that can be implemented manually, but could profit a lot from directly using the CPU's specially-built instruction for it.
All operations listed here have a direct counterpart in assembly.

The goal is to provide a method for these operations that make use of the special CPU instruction:

  • [P

Improve this page

Add a description, image, and links to the jit topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jit topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.