Utilize GPU in Dart / Flutter other than graphicsCross-thread operation not valid: Control accessed from a thread other than the thread it was created onUtilizing the GPU with c#openMP Lack of Diminishing Returns with Higher Thread CountFlutter dart dependency issueUnderstanding the Dart Flutter frameworkDart/Flutter : Converting timestampFlutter Dart constructorWhat is the '._' convention in flutter/dart?Flutter /Dart ClassesReusing widgets in flutter/dart

Can Ogre clerics use Purify Food and Drink on humanoid characters?

RandomInteger with equal number of 1 and -1

How can lift be less than thrust that is less than weight?

Dates on degrees don’t make sense – will people care?

Is declining an undergraduate award which causes me discomfort appropriate?

What's currently blocking the construction of the wall between Mexico and the US?

Explain why a line can never intersect a plane in exactly two points.

Why is it easier to balance a non-moving bike standing up than sitting down?

How does DC work with natural 20?

Why do textbooks often include the solutions to odd or even numbered problems but not both?

Why is it recommended to mix yogurt starter with a small amount of milk before adding to the entire batch?

Helping ease my back pain by studying 13 hours everyday , even weekends

Hot coffee brewing solutions for deep woods camping

How did Gollum enter Moria?

Paralleling mosfets reduce Rds On?

Why are < or > required to use /dev/tcp

How to remove this component from PCB

Has there been any indication at all that further negotiation between the UK and EU is possible?

Trainee keeps passing deadlines for independent learning

How to maintain a closed environment for one person for a long period of time

Hit the Bulls Eye with T in the Center

Did the CIA blow up a Siberian pipeline in 1982?

How would modern naval warfare have to have developed differently for battleships to still be relevant in the 21st century?

Is there a term for the belief that "if it's legal, it's moral"?



Utilize GPU in Dart / Flutter other than graphics


Cross-thread operation not valid: Control accessed from a thread other than the thread it was created onUtilizing the GPU with c#openMP Lack of Diminishing Returns with Higher Thread CountFlutter dart dependency issueUnderstanding the Dart Flutter frameworkDart/Flutter : Converting timestampFlutter Dart constructorWhat is the '._' convention in flutter/dart?Flutter /Dart ClassesReusing widgets in flutter/dart






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Aye Aye good people,



I was wandering if I can 'use' ('calls', 'threads'?)



the GPU with Dart and Flutter.



The documentation states




The GPU thread executes graphics code from the Flutter Engine. This
thread takes the layer tree and displays it by talking to the GPU
(graphic processing unit). You cannot directly access the GPU thread
or its data, but if this thread is slow, it’s a result of something
you’ve done in the Dart code. Skia, the graphics library, runs on this
thread, which is sometimes called the rasterizer thread.[...] More
information on profiling the GPU thread can be found at flutter.dev.
(which doesn't add much)




But what if I don't want to use it for graphics?



Let's say for example that I want to use Monte carlo method,
for some calculation,



could I make a call or send a thread to the GPU?



thank you for your attention










share|improve this question

















  • 1





    why not using compute function?

    – pskink
    Mar 25 at 8:29











  • pskink I didn't know it existed and looks awesome, I'm gonna look into it right now! many thanks <3 bonus question: this is flutter stuff, I'm also using aqueduct... any 'pure dart' equivalent?

    – Francesco Iapicca
    Mar 25 at 8:32







  • 1





    see blog.usejournal.com/… or hackernoon.com/are-futures-in-dart-threads-2cdc5bd8063a

    – pskink
    Mar 25 at 8:37







  • 1





    as I understand he's looking for something like link

    – Eugene
    Mar 28 at 16:22

















0















Aye Aye good people,



I was wandering if I can 'use' ('calls', 'threads'?)



the GPU with Dart and Flutter.



The documentation states




The GPU thread executes graphics code from the Flutter Engine. This
thread takes the layer tree and displays it by talking to the GPU
(graphic processing unit). You cannot directly access the GPU thread
or its data, but if this thread is slow, it’s a result of something
you’ve done in the Dart code. Skia, the graphics library, runs on this
thread, which is sometimes called the rasterizer thread.[...] More
information on profiling the GPU thread can be found at flutter.dev.
(which doesn't add much)




But what if I don't want to use it for graphics?



Let's say for example that I want to use Monte carlo method,
for some calculation,



could I make a call or send a thread to the GPU?



thank you for your attention










share|improve this question

















  • 1





    why not using compute function?

    – pskink
    Mar 25 at 8:29











  • pskink I didn't know it existed and looks awesome, I'm gonna look into it right now! many thanks <3 bonus question: this is flutter stuff, I'm also using aqueduct... any 'pure dart' equivalent?

    – Francesco Iapicca
    Mar 25 at 8:32







  • 1





    see blog.usejournal.com/… or hackernoon.com/are-futures-in-dart-threads-2cdc5bd8063a

    – pskink
    Mar 25 at 8:37







  • 1





    as I understand he's looking for something like link

    – Eugene
    Mar 28 at 16:22













0












0








0


0






Aye Aye good people,



I was wandering if I can 'use' ('calls', 'threads'?)



the GPU with Dart and Flutter.



The documentation states




The GPU thread executes graphics code from the Flutter Engine. This
thread takes the layer tree and displays it by talking to the GPU
(graphic processing unit). You cannot directly access the GPU thread
or its data, but if this thread is slow, it’s a result of something
you’ve done in the Dart code. Skia, the graphics library, runs on this
thread, which is sometimes called the rasterizer thread.[...] More
information on profiling the GPU thread can be found at flutter.dev.
(which doesn't add much)




But what if I don't want to use it for graphics?



Let's say for example that I want to use Monte carlo method,
for some calculation,



could I make a call or send a thread to the GPU?



thank you for your attention










share|improve this question














Aye Aye good people,



I was wandering if I can 'use' ('calls', 'threads'?)



the GPU with Dart and Flutter.



The documentation states




The GPU thread executes graphics code from the Flutter Engine. This
thread takes the layer tree and displays it by talking to the GPU
(graphic processing unit). You cannot directly access the GPU thread
or its data, but if this thread is slow, it’s a result of something
you’ve done in the Dart code. Skia, the graphics library, runs on this
thread, which is sometimes called the rasterizer thread.[...] More
information on profiling the GPU thread can be found at flutter.dev.
(which doesn't add much)




But what if I don't want to use it for graphics?



Let's say for example that I want to use Monte carlo method,
for some calculation,



could I make a call or send a thread to the GPU?



thank you for your attention







multithreading dart flutter gpu






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 8:09









Francesco IapiccaFrancesco Iapicca

382115




382115







  • 1





    why not using compute function?

    – pskink
    Mar 25 at 8:29











  • pskink I didn't know it existed and looks awesome, I'm gonna look into it right now! many thanks <3 bonus question: this is flutter stuff, I'm also using aqueduct... any 'pure dart' equivalent?

    – Francesco Iapicca
    Mar 25 at 8:32







  • 1





    see blog.usejournal.com/… or hackernoon.com/are-futures-in-dart-threads-2cdc5bd8063a

    – pskink
    Mar 25 at 8:37







  • 1





    as I understand he's looking for something like link

    – Eugene
    Mar 28 at 16:22












  • 1





    why not using compute function?

    – pskink
    Mar 25 at 8:29











  • pskink I didn't know it existed and looks awesome, I'm gonna look into it right now! many thanks <3 bonus question: this is flutter stuff, I'm also using aqueduct... any 'pure dart' equivalent?

    – Francesco Iapicca
    Mar 25 at 8:32







  • 1





    see blog.usejournal.com/… or hackernoon.com/are-futures-in-dart-threads-2cdc5bd8063a

    – pskink
    Mar 25 at 8:37







  • 1





    as I understand he's looking for something like link

    – Eugene
    Mar 28 at 16:22







1




1





why not using compute function?

– pskink
Mar 25 at 8:29





why not using compute function?

– pskink
Mar 25 at 8:29













pskink I didn't know it existed and looks awesome, I'm gonna look into it right now! many thanks <3 bonus question: this is flutter stuff, I'm also using aqueduct... any 'pure dart' equivalent?

– Francesco Iapicca
Mar 25 at 8:32






pskink I didn't know it existed and looks awesome, I'm gonna look into it right now! many thanks <3 bonus question: this is flutter stuff, I'm also using aqueduct... any 'pure dart' equivalent?

– Francesco Iapicca
Mar 25 at 8:32





1




1





see blog.usejournal.com/… or hackernoon.com/are-futures-in-dart-threads-2cdc5bd8063a

– pskink
Mar 25 at 8:37






see blog.usejournal.com/… or hackernoon.com/are-futures-in-dart-threads-2cdc5bd8063a

– pskink
Mar 25 at 8:37





1




1





as I understand he's looking for something like link

– Eugene
Mar 28 at 16:22





as I understand he's looking for something like link

– Eugene
Mar 28 at 16:22












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55333539%2futilize-gpu-in-dart-flutter-other-than-graphics%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55333539%2futilize-gpu-in-dart-flutter-other-than-graphics%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript