Skip to content

Commit

Permalink
Update to v0.1.0 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomohiroKuwano authored Jan 6, 2023
1 parent 52f9ebb commit 5dfc0e0
Show file tree
Hide file tree
Showing 117 changed files with 10,905 additions and 181 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
### Screenshot


### Useful links (Github issues, JIRA tickets, ML-Agents forum threads etc.)
### Useful links (Github issues, etc.)


### Types of change(s)
Expand Down
8 changes: 8 additions & 0 deletions Assets/Models.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Models/Bucket.fbx
Binary file not shown.
105 changes: 105 additions & 0 deletions Assets/Models/Bucket.fbx.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions Assets/Models/BucketSDF.asset

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Assets/Models/BucketSDF.asset.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Models/Torus.fbx
Binary file not shown.
105 changes: 105 additions & 0 deletions Assets/Models/Torus.fbx.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions Assets/Models/TorusSDF.asset

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Assets/Models/TorusSDF.asset.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/Resources.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions Assets/Resources/Test.compute
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#pragma kernel CSMain

struct Test
{
float x;
float y;
float z;
};

RWStructuredBuffer<Test> _test;

[numthreads(10,10,10)]
void CSMain (uint3 threadID : SV_DispatchThreadID)
{
float3 hoge = float3(1, 0, 0);

for (int i = 0; i < 100000; i++)
{
float3 fuga0 = float3(1, 1, 1);
float3 fuga1 = float3(1, 1, 1);
float3 fuga2 = float3(1, 1, 1);
float3 fuga3 = float3(1, 1, 1);
float3 fuga4 = float3(1, 1, 1);
float3 fuga5 = float3(1, 1, 1);
float3 fuga6 = float3(1, 1, 1);
float3 fuga7 = float3(1, 1, 1);
float3 fuga8 = float3(1, 1, 1);
float3 fuga9 = float3(1, 1, 1);
float3 fuga10 = float3(1, 1, 1);
float3 fuga11 = float3(1, 1, 1);
float3 fuga12 = float3(1, 1, 1);
float3 fuga13 = float3(1, 1, 1);
float3 fuga14 = float3(1, 1, 1);
float3 fuga15 = float3(1, 1, 1);
float3 fuga16 = float3(1, 1, 1);
float3 fuga17 = float3(1, 1, 1);
float3 fuga18 = float3(1, 1, 1);
float3 fuga19 = float3(1, 1, 1);
hoge += fuga19;
}

_test[threadID.x].x = hoge.x;
_test[threadID.x].y = hoge.y;
_test[threadID.x].z = hoge.z;
}
8 changes: 8 additions & 0 deletions Assets/Resources/Test.compute.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
Loading

0 comments on commit 5dfc0e0

Please sign in to comment.