wasm
WebAssembly (abbreviated Wasm) is a binary instruction format for a stack-based virtual machine. Wasm is designed as a portable target for compilation of high-level languages like C/C++/Rust, enabling deployment on the web for client and server applications.
Here are 1,474 public repositories matching this topic...
Problem
Lacking the following implementation:
impl<T> Threaded for T
where
T: Agent<Reach = Private>,Implementation Tips
- Implementing
Threadedis a g
As @TimvanScherpenzeel pointed out, cmgen should better explain that --size applies to the DFG LUT as well and that a cubemap and the LUT cannot be generated at the same time.
Currently 1000_000.1234_1234 tokenized as 1000 but should read as 1000000.12341234
The on-line demo at http://kripken.github.io/sql.js/examples/GUI/ does not give error messages (for wrong SQL or missing tables or attributes).
The version of @lovasoa does: http://lovasoa.github.io/sql.js/GUI/
There are a few flags that currently don't have proper error checking. The ones I found are -gc, -scheduler and -size. Using the wrong value will lead to no or unexpected errors.
I think the best way to handle it is to add a new method to compileopts.Config that checks whether there are any faulty flags, which is then called from the main function.
The issue came up on spectrum that we don't document how to run tests, for example, or how to deal with our release process in general.
We should create a small document and link to it in visible places (possibly by updating the issue filing template) that explain
This should be added to support the Tor folks!
-
Updated
Jul 4, 2020
There are +115 code examples provided with raylib, some of them contributed by several authors.
There could be some assets used on the examples that lack a license file (sometimes because it was just not available or not provided by the author). It should be reviewed.
All assets used in raylib examples should include a license and it should be a permissive license (free to use/distribute).
I'd like to use this issue as a tracking issue for filling out gaps in wasmtime's introductory documentation. This includes our book (rendered), API documentation (rendered), and [examples](https://github.com/bytecodeallianc
Motivation
I am using the following pattern to efficiently initialize a large buffer inside wasm memory from JavaScript without copies (see #1079 for full motivation):
#[wasm_bindgen]
pub struct WasmMemBuffer {
buffer: Vec<u8>,
}
#[wasm_bindgen]
impl WasmMemBuffer {
#[wasm_bindgen(constructor)]
pub fn new(byte_length: u32, f: &js_sys::Function) -> Self {
I think it would help users to have some clear information directly accessible about:
- What version of WebAssembly is currently supported and if there is any feature that is not supported (right now it is quite straightforward but better having it displayed clearly)
- Which of the WebAssembly proposals are supported (from https://github.com/WebAssembly/proposals)
- Which WASI snapshop is sup
-
Updated
Jun 4, 2020 - Go
💡 Feature description
JSDoc comment is a well-known tool to add a document in code/d.ts file.
JavaScript/Typescript language server recognizes jsdoc comment so that famous editor's IntelliSense recognizes jsdoc.
However, As far as I know, there is no way to add JSDoc comment. So, currently, I need to create a wrapper npm package to control d.ts.
What would you like to be added:
Implement the TextBlock.MaxLines. It's not implemented yet:
https://github.com/unoplatform/uno/blob/4bd015b98029ae8c121a5ad9d36268742fb76b8e/src/Uno.UI/UI/Xaml/Documents/UIElementTextHelper.wasm.cs#L107_L110
Documentation:
https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.textblock.maxlines
Solution:
https://twitter.com/addyosmani/st
General Information
- [+ ] Improvement
- [+ ] Feature
Description
It may be useful: High-quality C++ HTML parser from cobalt.foo project. CMake port of it can be found at https://github.com/blockspacer/skia-opengl-emscripten/issues/5 and https://github.com/blockspacer/skia-opengl-emscripten/blob/master/src/cobalt/cobalt_dom.cmake#L32
Some possible use cases:
- Create some
Python 3 bindings
Implement Python 3 bindings, so wasm3 can be easily used from Python.
Suggestion / feature request: List which languages / compilers support source maps, and which do not.
breadcrumbs.ts:155 Error importing index.js: TypeError: Cannot set property 'style' of undefined
at resize (index.js?ee1c:114)
at eval (index.js?ee1c:117)
at Module../js/index.js (1.e22692a2f01f3cf7e8df.js:343)
at webpack_require (main.92fa4d75296f0cce142e.js:84)
![image](https://user-images.githubusercontent.com/18341555/75841081-d0422800-5e07-11ea-9603-f4f98a1db782.p
-
Updated
Jul 5, 2020 - C#
-
Updated
Jul 1, 2020 - C
- There seems to be a bug when navigating to the catch_all route but not contributors, ex. localhost:7878/test. The current implementation panics using both rocket and actix as server.
- Rocket currently has 404 for unknown routes and this should be added to the actix example as well.
Since the Grain .wasm files can't be run without the Grain runtime, they should probably have a more distinct default extension such as .gr.wasm to make them easier to distinguish from other .wasm files.
- Organization
- WebAssembly
- Website
- webassembly.org
- Wikipedia
- Wikipedia
Reference from TensorFlow: https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/matrix-band-part
This op is used by the Music Transformer model.