-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
431de12
commit b53d073
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/Nncase.Schedule/Schedule/MonteCarloTreeSearch/IEnvironmentState.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nncase.Schedule/Schedule/MonteCarloTreeSearch/SearchNode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright (c) Canaan Inc. All rights reserved. | ||
// Copyright (c) Canaan Inc. All rights reserved. | ||
// Licensed under the Apache license. See LICENSE file in the project root for full license information. | ||
|
||
using System.Collections; | ||
|
@@ -33,7 +33,7 @@ public sealed class MCTState : IEnvironmentState<MergePoint> | |
|
||
private int _permformCount; | ||
|
||
private TieredTileGraph _graph; | ||
private readonly TieredTileGraph _graph; | ||
Check failure on line 36 in src/Nncase.Schedule/Schedule/TileGraph/GraphMCTS.cs GitHub Actions / build-x86_64-linux
Check failure on line 36 in src/Nncase.Schedule/Schedule/TileGraph/GraphMCTS.cs GitHub Actions / build-x86_64-linux
Check failure on line 36 in src/Nncase.Schedule/Schedule/TileGraph/GraphMCTS.cs GitHub Actions / build-x86_64-linux
|
||
|
||
public MCTState(TieredTileGraph graph, string moduleKind, string prefix, string searchPath, Dictionary<TileNode, GraphTiler.TiledFunc> solveMemo, ICpuTargetOptions targetOptions) | ||
{ | ||
|