Jump to content

LogMAN

Members
  • Posts

    717
  • Joined

  • Last visited

  • Days Won

    81

Posts posted by LogMAN

  1. On ‎2‎/‎5‎/‎2019 at 12:14 AM, Neil Pate said:

    On LV2015 Quite often LabVIEW will get itself into a mode where in order to box select something I have to go completely around it rather than just partially around iy. No idea what causes this to change, but it pops up on my dev PC every few weeks. No driver change has happened inbetween and then it usually just fixes itself.

    I just had this issue and found a way to reproduce (and fix) it:

    1. Create a new VI in a library (use the right click menu of the library to create the VI).
    2. Place the VI on the block diagram of another VI

    The VI is only selectable if the selection goes completely around it.

    To fix it, open the icon editor on the offending VI and simply press OK to close it.

    Now selection works as expected (i.e. partial selection selects the VI).

  2.  

    1 hour ago, smithd said:

    Its worth mentioning that LabVIEW should do this for you, its called loop invariant code motion, so don't worry about it for performance reasons.You should put the code wherever its more readable.

    Good point.

    Now that you mention it, the output of the multiplication functions are connected to a VI that (as far as I can tell) builds status messages and updates the progress bar (see the references connected to it). The output of that VI is displayed on the FP at a rapid pace.

    The VI obviously has too many responsibilities and should be split into multiple VIs. For example:

    • Calculate Progress
    • Calculate Estimate Time To Complete
    • Calculate Estimate Time To Next User Action
    • Display Progress
    • Display Status Message
    • Display Time To Complete
    • Display Time To Next User Action

    These VIs can be put in sequence, which makes it very easy to follow. It's also much more reusable than the current solution.

    I'm well aware that the example above is probably too fine grained for the purpose of this application, but there is a high chance that each of these VIs can be reused multiple times or even omitted if not needed. That is not possible with the current solution. That is probably why there are two Boolean constants attached to the VI right now (i.e. too enable features that are only required in this particular section of code).

     

  3. @smithd has stated very important points. It's also very important to get accustomed to techniques like the state machine in order to keep the code readable.

    However, in my experience it is very unlikely that

    a) shifting to a new system (like Teststand) solves the problem. That's for the same reason the previous one failed: A lack of understanding, planning and structure.

    b) using "better" techniques improve the application. Again for the same reason.

    c) replacing the current structure is even remotely possible because either the lead programmer left (or rather ran away) or it is too complex to comprehend.

    Edit: To clarify, you should take those solutions into consideration of course!

    This is of course my personal experience. Your situation may be entirely different.
    That being said, I'm sure we all have made these mistakes and learned from it. You should do the same.

    At first glance your VI looks confusing and hardly maintainable. On a closer look, however, it strikes me as a rather simple VI (i.e. not many different jobs going on at the same time) that only lacks structure and uses way too many indicators that presumably serve no real purpose other than being there (and maybe occasionally being viewed). I think the word we agreed on for such a VI is "paintainable", right?

    You asked for suggestions to improving your current situation, so find below a summary of what you can do, based on the code you shared:

    1. Remove code that is only meant for debugging purposes.

      With this I mean indicators such as the ones in the inner while loop. If the loop runs at max. speed, it updates the indicators every 20 ms. That is quite a bit faster than any human being can physically comprehend. Therefore, you have no reason to keep the indicators updating inside the loop. If you need to display the last value, simply move them outside the loop and use the last value.

      Once you removed the indicators, remove any code that isn't connected anymore. That should get rid of "dead" code.
       
    2. Take a closer look at the inner while loop and replace it by a for loop

      If you look closely, you'll notice that the inner while loop is actually a for loop. The conditions are:

      a) The boolean control "Stop Loops and Save Data 2" must be True, or
      b) The number of iterations is equal to the length of the "Frequency" array.

      Condition b) is clearly a perfect fit for for loops.
      Once you have made it a for loop, the second condition can simply be removed, which makes it a bit easier to understand.
       
    3. Move static functions outside the loop

      Inside the inner while loop are some multiplication functions that multiply values that come from outside the loop. These functions will always produce the same result inside the loop and therefore should be placed outside.
      It's a small change, but stuff like this makes the diagram easier to comprehend.
       
    4. Initialize the cluster outside the loop

      This is probably the biggest and easiest fix you can do.
      Take a close look at the "Bundle By Name" for your cluster in the loop. With the exception of two indexed arrays, all parameters are statically provided from outside the loop.

      You can easily clean up this code by initializing the cluster outside the loop and only add the indexed arrays in the loop.
      This should reduce the size of this loop considerably. It will also allow to see the purpose of the loop.
       
    5. Rearrange wires and don't hide wires behind structures or VIs

      This may sound like a lot of work (because it is), but one very important factor in LV is managing wires. There is actually a thread on LavaG dedicated to handling wires. I suggest taking a look, you can learn how other people do it:Take your time to remove wire bends whenever possible. I know it sounds ridiculous, but once you get accustomed to it you do it by reflex at which point you can start getting lazy again 😉
  4. 22 hours ago, ShaunR said:

    Bit lets be clear here. The issue isn't version performance, per se. It is a problem with redraw on certain platform configurations; the reason for which is unknown. My feeling is that it is something to do with the display driver as I have seen other spurious issues (such as not redrawing correctly when dragging) which were resolved with driver updates. 

    You are right, hardware and drivers probably play a huge part in it. In fact, the computer I use to record the videos isn't really up to the task, which is why it's easy to reproduce.

    19 hours ago, Neil Pate said:

    I think ShaunR is in to something here. On LV2015 Quite often LabVIEW will get itself into a mode where in order to box select something I have to go completely around it rather than just partially around iy. No idea what causes this to change, but it pops up on my dev PC every few weeks. No driver change has happened inbetween and then it usually just fixes itself. 

    That's really strange, can't say that I've ever had issues like that. Everything with the exception of structures and wires should simply work with partial selection. Does it only happen in LV2015?

     

    Oh and I finally figured out why the block diagram sometimes renders one line at a time like this: (sorry for the potato capture, it's impossible to capture the screen because the graphics driver is busy rendering lines)

    I can reproduce it 90% of the time on a decently slow VI using this method:

    1. Open a complex VI that slows down the editor (like the VI mentioned before)
    2. Select an area that has lots of stuff in it. The more elements are highlighted, the better
    3. Scroll the window down until some of the selected items disappear from the screen (it should lag)
    4. Quickly left click into a free area to deselect all elements and scroll up immediately (it's important to have a delay when deselecting and scrolling or it won't work)

    I've reproduced it in LV2015 and LV2017 and it happens maybe once per month on my dev machine. I'm curious if someone else has seen it?

    Any idea why this is happening? Can you reproduce it too?

  5. That is good news. Thanks for sharing, Darren!

    21 minutes ago, Darren said:

    Selection rectangles draw significantly faster in 2019. Window scrolling while dragging a selection box is also much faster.

    For reference, my dev machine is Win7-64, 16 GB RAM, E5-1650 3.5GHz. 

    Your hardware sounds reasonable. By significantly faster do you mean "fluently" or "stuttering, but not as much as before"?

    I'm so ready to replace LV2015 and finally get my hands on malleable VIs (not to mention all the other features that were added). Can't wait to finally try out LV2019.

  6. 48 minutes ago, bmoyer said:

    Why does it seem that nobody at NI is concerned about this behavior?

    NXG

    51 minutes ago, bmoyer said:

    but since I can't provide my project, haven't gotten far at determining cause or solutions.

    Send them this VI for reference: https://forums.ni.com/t5/LabVIEW/Very-complicated-labview-block-diagram/td-p/3187507

    It may be broken and surely doesn't win a price for simplicity, but it makes the issue clearly visible to anyone.

    Now that I think about it, does the Example Finder ship with a decently complicated VI or project to show this issue? That would be hilarious.

    I really hope they fix it in LV2019 (fingers crossed🤞).

  7. 6 hours ago, smithd said:

    This may have already been mentioned, but have you tried changing the compiler complexity threshold?

    The compiler shouldn't be involved as long as no changes are made to the code. In fact, turning it down to 0 (always limit optimizations) had no impact whatsoever (neither in LV2017 nor in LV2015).

    On a smaller VI the selection box is more responsive, but the CPU usage is still about 10-15% while resizing the selection box. Tested on an empty VI in LV2017. The same test in LV2015 shows a CPU usage of about 1%.

    Results can vary depending on the hardware of course.

    5 hours ago, smithd said:

    Also, this is kind of a side point but the concept is the same. Has anyone noticed that reentrant VIs get super slow sometimes when debugging? Its not always, but I can't figure out what conditions might be causing it. Its like you're going along debugging some code, you step into a reentrant VI, and everything just stops, and it takes like 20-30 seconds for the window to materialize. I know its not just one computer, sadly.

    Not sure if it only happens on reentrant VIs, but very rarely (maybe once per month) LV2015 lags very badly while scrolling the block diagram. It literally renders the diagram line by line over a period of maybe 20-30 seconds. Once it's done, scrolling is as fluent as it should be. I still haven't figured out why that happens. Maybe the UI thread is clogged by the compiler or something. It is also not tied to a particular machine.

  8. I can present less complex VIs with the same behavior, more or less intense. @Neil Pate likely also doesn't use broken VIs for real world applications and gets similar behavior. The VI in my video is certainly an extreme case that is not fit to be part of any code base, but it serves as a good example for how bad things can get. I don't expect that VI to work flawlessly, but it wouldn't hurt trying to achieve that, even if that means disabling fancy stuff for more complex VIs.

    Here is the same VI in LV2015 for reference. To be fair, scrolling is as slow as in LV2017 (or vice versa), but the selection box is so much better.

    The VIs I'm normally working with are much smaller than this one. Most of them fit on the screen, so scrolling is not an issue for me. The selection box, however, is a different story and part of my daily work. It being slow is a red flag.

    • Like 1
  9. That is very unfortunate. NI really needs to work on that.

    For reference, I found a complex VI here and used that on my private notebook (decent hardware, enough for LV2015). This is what it looks like on my end (using LV2017.0f2).

    It's a bit faster without recording of course, but not much. Also the CPU consumption is about 20% while dragging, which is way to high in my opinion. How did that ever pass testing phase? Looks to me like they never tested with more complex VIs like this because it works fine for smaller (or empty) VIs.

    Anyway, it seems that the dragging operation in LV2017 is not a O(1) operation. More like O(n) where n is the number of objects on the block diagram. They probably check every object during the drag operation to figure out which one to highlight.

    Works better on the front panel but that is probably because there are less objects on the FP (i.e. no wires).

    • Like 1
    • Sad 1
  10. Are you working on a notebook by any chance?

    In my experience LV2016 and LV2017 (never tested SP1 though) get stupidly slow if the graphics card is not powerful enough to render the selection box. Notebooks in particular use CPU integrated graphics and only utilize the "real" GPU if a program requires more demanding 3D capabilities. LabVIEW doesn't fall under that category (yet).

    For the few test projects we do in LV2017 we use a sufficiently overpowered machine that can handle virtually anything you throw at it (designed to rendering 3D images from one of our cameras). It's ridiculous. Still not sure what to make of it...

  11. 6 hours ago, Michael Aivaliotis said:

    The ones I've used have limitations and typically cap your repo size at 2 Gb. Recently I hit this limit on a large project.

    Technically, no repository should ever grow to that size (as in "best practice"). Especially executables and installers will never change, so there is no reason to keep a history of it. I suggest putting them in a separate folder. For the same reason LV allows to separate compiled code in the first place.

    If you insist on keeping these files in the repository, consider making changes to the structure of your repository to keep it manageable.

    6 hours ago, Michael Aivaliotis said:

    So this question is mostly to get community feedback on what approach you use to handle this, if at all.

    I've been in a similar situation in the past, where a repository exceeded a size of 10 GB. Very painful to pull and push, even on a local network. That repository contained installation scripts and of course the installation files that were bundled with it. Similar to your situation, these support files were the main reason for the size of the repository.

    The solution was simple: Split the repository into two repositories. One repository contains the installation scripts, another the support files. The repository with the support files was made a submodule in the main repository (using git submodules), essentially keeping the original structure in place. To reduce the size of the main repository, history was simply rewritten using git filter-branch. Don't do that! First create a copy of the repository and then make changes to the copy. That way the old repository can be archived for future reference (lessons learned 😅).

    Of course, the repository for the support files also grows over time. The solution is to create a new empty repository for every major revision (or whatever fits your needs) and re-link the main repository to it. It is still possible to checkout older revisions (the ones pointing to the "previous" repository) but it requires re-initializing submodules when doing so (because it points to a different repository).

    6 hours ago, Michael Aivaliotis said:

    I also tried putting the build output and other transitory files to dropbox as well. However I found an issue because dropbox would interfere with the build process (any insight to this from others is welcome).

    I had similar issues on Windows 7, where the build fails if the output folder is open in Windows Explorer.

    You should take a look at the application builder palette and automate the process by moving files after the build finished.

    We did so recently with great results. With a simple click of a button it builds all files, puts everything in a ZIP file (named according to naming standard) and moves it to a secure server location that is automatically shared to everyone who need to know about it. The only thing needed is to set the build version before pressing start and to commit (and tag) after it finished.

    Hope that is of some use.

  12. On 1/11/2019 at 8:30 AM, mischl said:

    I was facing only one problem: '?-x' in a statement is processed as text and the question mark will not be exchanged with bind, use concat instead: ? || '-x'

    Parameter bindings require you to follow specific syntax. It is explained here: https://www.sqlite.org/c3ref/bind_blob.html

    Quote

    In the SQL statement text input to sqlite3_prepare_v2() and its variants, literals may be replaced by a parameter that matches one of following templates:

    • ?
    • ?NNN
    • :VVV
    • @VVV
    • $VVV

    In the templates above, NNN represents an integer literal, and VVV represents an alphanumeric identifier. The values of these parameters (also called "host parameter names" or "SQL parameters") can be set using the sqlite3_bind_*() routines defined here.

    '?-x' gets interpreted as parameter, which doesn't work. Two solutions come to mind:

    1) Use the concatenation function like you suggested. This makes sense if the suffix is static for all parameters.

    2) Do the concatenation before binding the parameter (i.e. in LV). If your suffix can change, make it part of the parameter.

  13. Indeed, the location is different => https://lavag.org/applications/core/interface/file/attachment.php?id=13529

    If you go to your profile (icon in the top right) and select "My Attachements", the files listed there show a different file location than the ones in posts. Here is mine from above:

    My Attachments

    https://lavag.org/applications/core/interface/file/attachment.php?id=13701

    This one probably works (not tested, just a guess)

    Edit: it doesn't.

    Post

    https://lavag.org/uploads/monthly_2019_01/591079262_AccessingElementsinaFor-Loop_vi.png.739aeb22d70a5a697b28a8358c333ffb.png

  14. 18 hours ago, mischl said:

    yes, but that is set already to false by default. isn't it?

    You are right, my bad.

    18 hours ago, mischl said:

    is the usage of the 'SQL Connection in' and therefore no 'SQL statement in' correct? Or how to use them?

    Yes and no.

    The SQL Prepare function creates the SQL Statement. It allows you to run the same SQL query multiple times, but more efficient. I've attached an example in my last post, using your SQL query:

    SELECT using binding parameters.png

    SQL Prepare (second VI from left) receives an SQL Connection and the SQL query ("SELECT * FROM sueli WHERE d = ?"). Note, that it says "d = ?". The "?" will later be replaced in the loop by the actual value.

    In the for loop, the first node does exactly that. It replaces "?" by an element from the list. Note that you can have multiple values, using multiple "?" in your query.

    SQLite First Step (the next VI) executes the query once and you can read the results using the node that follows (Get Column String).

    Before running the same query again, you must reset the SQL Statement. Note, that everything takes place within the loop.

    When the loop ends, you need to finalize the SQL Statement or it stays in memory.

    18 hours ago, mischl said:

    in the example, the 'SQL statement' ends after the reset at 2. at 3 and 4 further ''SQL statement' are in used and only one can be finalized. but there are three now. how to handle that?

    You must finalize each SQL Statement separately. In your example, everything is inside the loop, so you gain nothing by using prepared statements.

    SQLite Prepare and SQLite Finalize must be placed outside the loop. I suggest you split those SQL Statements into separate VIs or it will be very confusing.

    18 hours ago, mischl said:

    the 'Prepare' at 3 needs a 'SQL Connection', it is the one chained from 2, or?

    Yes, they all share the same connection.

    18 hours ago, mischl said:

    sorry, it seems that I forgot to attach the snippet. here is it. no problem if there are broken wires, but it might be easier to wire an example with the correct usage of 'SQL Connection in' and 'SQL statement in' than to explain them by text.

    Actually, the snippet was attached, but Lava removes the source code of snippets right now (download the image and drag it into LabVIEW).

    Can you copy the code into a new VI and post it here?

  15. On 12/11/2018 at 6:16 PM, Michael Aivaliotis said:

    I think something got changed in the upgrade, but i think i fixed it now.

    Unfortunately it isn't. Can you check again?

    Here is one of my posts for reference with multiple code snippets (also some of the previous posts as well):

    The first image has an original size of 26,392 bytes but the file in the post is only 12,304 bytes. That is the fully-zoomed image from here:

    https://lavag.org/uploads/monthly_2019_01/591079262_AccessingElementsinaFor-Loop_vi.png.739aeb22d70a5a697b28a8358c333ffb.png

    Let me know if I'm doing that wrong

  16. 3 hours ago, mischl said:

    I want to optimize the upper part on the screenshot with the lower (to avoid too many transactions).

    My general advice for refactoring code is to do it step-by-step. Don't try to fix everything at once, as it will likely break your code (as it did in your case).

    Note:

    • I wasn't able to load your VI snippet. I'm not sure why though (either I'm to stupid to do it or Lava sanitizes images)
    • My suggestions below are based on your original VI

    Step 1 - Improve readability

    Arrays and for loops

    The outer for loop iterates over multiple arrays at the same time. This means that the loop will end after processing each element of the smallest array. I suggest you use one array for iteration and use the Array Index function to access elements from the other arrays. Here is an example:

    657223384_AccessingElementsinaFor-Loop_vi.thumb.png.55fe24cd86c35bfcc367a2673c1de36c.png

    You should play around with it to see the different outcomes. Note that indexing an element from an array of smaller size returns a default value (i.e. zero for numbers, an empty string for Strings and false for Boolean).

    Shift registers

    The outer for loop uses a shift register for the SQLite instance as well as the error cluster. The inner for loop, however, doesn't. This can be problematic for two reasons:

    1) The SQLite instance in the inner for loop gets reset after each iteration.

    2) An error in the inner for loop is reset after each iteration and only the last error is returned.

    The solution depends on what you want to do. If you want to abort as soon as possible on any error, I suggest not using a shift register but making the for loop conditional instead (exit on error). Otherwise use shift registers on both loops.

    Step 2 - Optimize your code

    Use transaction outside of for loops

    Transactions are very useful for improving performance if used correctly. In your second example, you already added the BEGIN and COMMIT Transaction using "MySavepoint". This is generally a good idea.

    3 hours ago, mischl said:

    1. place the BEGIN and COMMIT outside. ok 

    Disable transactions on Execute SQL

    The Execute SQL function has an optional input on the top which you can set to false in order to disable transactions. This will already improve performance considerably.

    Answering questions

    3 hours ago, mischl said:

    2. the command in 2 and 3 is something like SELECT * FROM stueli WHERE d = 'xy'. Do I have to do that by bind or just as prepare statement on the picture?

    SQL Prepare and SQL Finalize should be placed outside the for loop and you need to inject values for your parameters at some point (unless your SQL Statement is static, which it isn't according to your info above).

    The "INSERT many rows Template code.vi" provided by the library (see Code Templates palette) visualizes that very well:

    2002117129_INSERTManyRowsTemplate_vi.thumb.png.d2564885d0cde9253d04192b44088526.png

    I highly suggest not using "SELECT *" but explicitly selecting particular columns instead. That way your SQL Statement becomes predictable.

    3 hours ago, mischl said:

    4. here the 'insert many row template' is used without the BEGIN and COMMIT. So it is the same question as in 3: how to handle the connection.

    Here is an example that may or may not work (I can't test it for obvious reasons):

    353253096_SELECTusingbindingparameters.thumb.png.1e4dea5001dc6f6bd687a2db46dc4556.png

    I suggest making a VI for each statement (without transactions of course). That way you can test things in isolation and be certain that it works.

    3 hours ago, mischl said:

    3. is the usage of the 'SQL Connection in' and therefore no 'SQL statement in' correct? Or how to use them?

    I'm not sure what you mean by that. Can you explain what you mean in more detail?

     

    • Like 1
  17. 1 hour ago, Michael Aivaliotis said:

    The library is still useful. But it can be useful and dead at the same time.

    I agree to what @ShaunR said, but let me add to it:

    The library is not dead, because it is still functional and very useful - especially for new developers as mentioned earlier.

    The project, however, is dead. As you correctly pointed out:

    20 minutes ago, Michael Aivaliotis said:

    Bug reports and suggestions get ignored or go into a void. Documentation is missing or broken with no intent to be fixed. New improvements and efficiencies in LabVIEW have not been incorporated.

    Technically anyone could fork the project (on whatever platform - SourceForge / GitHub / BitBucket - you name it). Development could even continue under a new name (probably even the same?). Yet the number of licenses being used right now is impossible to maintain, even for experienced developers. OpenG is also tightly coupled with lots of services (i.e. NI and VIPM link to the official repository on SourceForge). To my understanding (although I don't have facts on this), the lack of response in the main repository is the reason to why libraries like MGI were found in the first place. Just look at the bug tracker https://sourceforge.net/p/opengtoolkit/bugs/

    This is also not the first time we discussed the (possible) future of OpenG. Here is a thread from two years ago:

    The complexity of the main repository (i.e. the folder structure) also sets the bar very high for novice contributors: https://sourceforge.net/projects/opengtoolkit/files/

    And let's not forget the difficulties in comparing VI revisions in general.

    All things considered, the project is not a simple task anyone could just pick up and get going. Lot's of things need to be considered, which requires lots of experience in LV. Of course, most experienced developers have no interest in contributing to the project if it involves lots of administrative tasks on top of their regular job.

    Maybe a shared library like OpenG is not the right solution for LV. A simple place to share VIs might be easier to manage and contribute to in the long run.

  18. We used the OpenG library a long time ago, when LabVIEW was still new to us and we could leverage the power of OpenG to accelerate our development (between LV6.1 and LV2009). This is in my opinion still the strongest point of that library - it provides new developers (or teams) with lots of useful functions at the cost of dependencies.

    We have since walked away from it due to incomprehensible copyrights, lack of updates (although it is very stable) and generally because we used few functions to begin with (i.e. Fit FP to largest decoration, filter arrays and some string manipulation). At some point the dependencies mattered more than the benefits. What we needed was rebuild in our own library, removing all dependencies from OpenG.

    If the OpenG library were to be cleaned up, just removing functions is not a good solution because it breaks compatibility for anyone who depends on it. On the other hand, dependencies between the libraries can easily be removed.

    For example, there is no need for OpenG String to depend on OpenG Error anymore. Instead OpenG String could be updated to remove the dependency (using only native LV functions) and still keep OpenG Error in VIPM.

    OpenG Error on the other hand is technically unnecessary nowadays (as pointed out by @smithd above). This library can be archived (while keeping it in VIPM). Here is what we do with our libraries when they become obsolete:

    • Remove obsolete VIs from the palette (but keep them in the vi.lib)
    • Change icons and documentation to highlight obsolete VIs (similar to how NI does it, by adding red color to the icon - the more the better)
    • Explain in the documentation why the VI is obsolete and how to replace it
    • Add replacement code to the block diagram of the VI
    • Remove password protection
    • Enable inlining if possible

    That way, when you come across obsolete VIs, you can simply use the "Inline SubVI" command to replace it: https://forums.ni.com/t5/LabVIEW/Inline-subvi/m-p/1279086/highlight/true#M532443

    Of course, sometimes changes may destroy the block diagram of the calling VI, which is why those VIs have password protection removed, allowing the developer to inline the VI manually.

  19. 2 hours ago, Aristos Queue said:

    so I hack up AppBuilder a bit so that when I get to the end of the build, I can open up the broken VIs and see what they look like.

    Please share ?

    2 hours ago, Aristos Queue said:

    Yet another reminder -- as if I needed it -- that computers only do what we tell them to do. And they do it very precisely.

    :book: Amen.

    I was working on a nasty bug for the past few days as well. The source code looked fine, but the application didn't do what it was supposed to do (or so I thought). As it turns out the executable did exactly what it was supposed to do. And I was looking at the latest code, testing old software...

    :oops:

    Reminder:

    1) Always include und update the version number in your executables (and configuration data if possible)!

    2) Work with the source code you used to make the executable!

    3) If you are experienced enough to skip points 1 and 2, see points 1 and 2!

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.