Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Grappler (0.54 sec)

  1. tensorflow/BUILD

            "//tensorflow/core/grappler/clusters:cluster",
            "//tensorflow/core/grappler/clusters:single_machine",
            "//tensorflow/core/grappler/clusters:virtual_cluster",
            "//tensorflow/core/grappler/costs:graph_memory",
            "//tensorflow/core/grappler/graph_analyzer:graph_analyzer_tool",
            "//tensorflow/core/grappler/optimizers:meta_optimizer",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. .bazelrc

    ntegration_testing/... -//tensorflow/compiler/tf2tensorrt/... -//tensorflow/core/tpu/... -//tensorflow/lite/... -//tensorflow/tools/toolchains/...  -//tensorflow/go/... -//tensorflow/java/... -//tensorflow/core/grappler/optimizers:auto_mixed_precision_test_cpu -//tensorflow/core/grappler/optimizers:remapper_test_cpu -//tensorflow/core/kernels/image:resize_bicubic_op_test -//tensorflow/compiler/mlir/tfr/examples/customization:test_ops_test -//tensorflow/compiler/mlir/tfr/examples/mnist:mnist_ops_test...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      TF_RET_CHECK(initialized_ && !edges_contracted_ && !clusters_created_);
      edges_contracted_ = true;
    
      // TODO(hpucha): Handle the case where kXlaClusterAttr is already set (for
      // example, from the Grappler fusion pass).
    
      // In general there are multiple maximal clusterings, but they are not all
      // equally performant.  Some clustering decision are likely to improve
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    					"samples",
    					"signing",
    					"snapshots",
    					"testing-base",
    					"toolchains-jvm",
    					"tooling-api",
    					"version-control",
    					"war",
    					"workers",
    					"wrapper-main",
    					"wrapper-shared"
    				]
    			}
    		],
    		"testCoverageUuid":33
    	},
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TeamCityParallelTests",
    					"numberOfBatches":4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.wrapper.Wrapper.getBatchScript()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Wrapper.java:0)
    Method <org.gradle.api.tasks.wrapper.Wrapper.getDistributionBase()> does not have raw return type assignable to org.gradle.api.provider.Property in (Wrapper.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		// name, so set the linker name of the Go wrapper.
    		fmt.Fprintf(fgo2, "//go:linkname _cgoexp%s_%s _cgoexp%s_%s\n", cPrefix, exp.ExpName, cPrefix, exp.ExpName)
    		// In external linking mode, the Go linker sees the Go
    		// wrapper, but not the C wrapper. For this case,
    		// export the Go wrapper so the host linker can
    		// resolve the reference from the C wrapper to the Go
    		// wrapper.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    =====
    ====
    
    [[rel4.8:configure_internal_tasks]]
    === [4.8] Configure existing `wrapper` and `init` tasks
    
    You should no longer define your own `wrapper` and `init` tasks. Configure the existing tasks instead, for example by converting this:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle
    [source, groovy]
    ----
    task wrapper(type: Wrapper) {
        ...
    }
    ----
    =====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    				StructValue: s,
    			},
    		},
    	}
    }
    
    func (v *myProtoValue) keyAsString(key string) string {
    	s := v.keyAsStruct(key)
    	return s.GetStringValue()
    }
    
    func getIstioRBACPolicies(cd *configdump.Wrapper, port int32) ([]string, error) {
    	hcm, err := getInboundHTTPConnectionManager(cd, port)
    	if err != nil || hcm == nil {
    		return []string{}, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    There are several ways to look up an element in a container by name:
    ```
    tasks {
        "wrapper"() // 1 - returns TaskProvider<Task>
        "wrapper"(Wrapper::class) // 2 - returns TaskProvider<Wrapper>
        "wrapper"(Wrapper::class) { // 3 - configures a task named wrapper of type Wrapper
        }
        "wrapper" { // 4 - configures a task named wrapper of type Task
        }
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. cmd/object-api-multipart_test.go

    	"strings"
    	"testing"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/hash"
    	"github.com/minio/minio/internal/ioutil"
    )
    
    // Wrapper for calling NewMultipartUpload tests for both Erasure multiple disks and single node setup.
    func TestObjectNewMultipartUpload(t *testing.T) {
    	if runtime.GOOS == globalWindowsOSName {
    		t.Skip()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
Back to top