Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ckpt (0.03 sec)

  1. tensorflow/compiler/aot/tests/BUILD

        ],
    )
    
    genrule(
        name = "gen_test_graphs",
        testonly = 1,
        outs = [
            "test_graph_tfadd.pb",
            "test_graph_tfadd_with_ckpt.ckpt",
            "test_graph_tfadd_with_ckpt.pb",
            "test_graph_tfadd_with_ckpt_saver.ckpt",
            "test_graph_tfadd_with_ckpt_saver.pb",
            "test_graph_tfadd_with_ckpt_saver.saver",
            "test_graph_tfassert_eq.pb",
            "test_graph_tfcond.pb",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

            }
    
            List<ImplicitInputRecord<?, ?>> readImplicitList(Decoder decoder) throws Exception {
                int cpt = decoder.readSmallInt();
                List<ImplicitInputRecord<?, ?>> implicits = Lists.newArrayListWithCapacity(cpt);
                for (int i = 0; i < cpt; i++) {
                    final Object in = readAny(decoder);
                    final Object out = readAny(decoder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tfcompile.bzl

            # //tensorflow/core:lib.
            #
            # Note: to get smaller size on android for comparison, compile with:
            #    --copt=-fvisibility=hidden
            #    --copt=-D_LIBCPP_TYPE_VIS=_LIBCPP_HIDDEN
            #    --copt=-D_LIBCPP_EXCEPTION_ABI=_LIBCPP_HIDDEN
            native.cc_binary(
                name = benchmark_name,
                srcs = [benchmark_file],
                testonly = testonly,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    			off := uint((opBits >> 8) & 0xFF)
    			delta |= (x >> off) & (1<<n - 1) << deltaShift
    			deltaShift += n
    		}
    		op := f.op + Op(delta)
    
    		// Special case: BKPT encodes with condition but cannot have one.
    		if op&^15 == BKPT_EQ && op != BKPT {
    			continue Search
    		}
    
    		var args Args
    		for j, aop := range f.args {
    			if aop == 0 {
    				break
    			}
    			arg := decodeArg(aop, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                invalidCount++
            }
            buildFile << """
                int cpt
                dependencies {
                    components {
                        withModule('org.test:moduleB') {
                            withVariant("$variantToTest") {
                                attributes {
                                    if (++cpt == $invalidCount) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/types.go

    	if found {
    		expT, err := declType.ExprType()
    		if err != nil {
    			return expT, false
    		}
    		return expT, found
    	}
    	return rt.typeProvider.FindType(typeName)
    }
    
    // FindDeclType returns the CPT type description which can be mapped to a CEL type.
    func (rt *DeclTypeProvider) FindDeclType(typeName string) (*DeclType, bool) {
    	if rt == nil {
    		return nil, false
    	}
    	return rt.findDeclType(typeName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top