Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for genrule (0.16 sec)

  1. tensorflow/compiler/aot/tests/BUILD

    load("//tensorflow:strict.default.bzl", "py_strict_binary")
    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow:tensorflow.default.bzl", "filegroup", "genrule")
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
    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. tensorflow/compiler/aot/tfcompile.bzl

            # because builds may run concurrently with tests, and tests need to be
            # able to assume that they have control of the full GPU.
            out_nodes_file = "out_nodes_" + freeze_name
            native.genrule(
                name = ("gen_" + out_nodes_file),
                srcs = [config],
                outs = [out_nodes_file],
                cmd = ("CUDA_VISIBLE_DEVICES='' " +
                       "$(location " + tfcompile_tool + ")" +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/compile.cc

        TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::HloSnapshot> module,
                            computation.Snapshot());
        // Serialize the HloSnapshot deterministically so that all the outputs of a
        // tf_library genrule are deterministic.
        const size_t size = module->ByteSizeLong();
        auto serialized = std::make_unique<char[]>(size);
        TF_RET_CHECK(
            SerializeToBufferDeterministic(*module, serialized.get(), size));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

    )
    
    py_strict_binary(
        name = "gen_quantized_function_library",
        srcs = ["gen_quantized_function_library.py"],
        deps = [
            "@absl_py//absl:app",
            "@absl_py//absl/flags",
        ],
    )
    
    genrule(
        name = "quantized_function_library",
        srcs = [
            "passes/quantized_function_library_uniform_quantized.mlir",
            "passes/quantized_function_library.mlir",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("create").Groups(coordinationGroup).Resources("leases").RuleOrDie(),
    				rbacv1helpers.NewRule("get", "update").Groups(coordinationGroup).Resources("leases").Names("kube-controller-manager").RuleOrDie(),
    				// Fundamental resources.
    				rbacv1helpers.NewRule("create").Groups(legacyGroup).Resources("secrets", "serviceaccounts").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("list", "watch").Groups(legacyGroup).Resources("persistentvolumes", "persistentvolumeclaims").RuleOrDie(),
    				rbacv1helpers.NewRule("get", "list", "watch").Groups(legacyGroup).Resources("nodes").RuleOrDie(),
    				rbacv1helpers.NewRule("patch", "update").Groups(legacyGroup).Resources("nodes/status").RuleOrDie(),
    				rbacv1helpers.NewRule("list", "watch").Groups(legacyGroup).Resources("pods").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/main.go

    		}
    
    		src, err := os.ReadFile(a.genfile)
    		if err != nil {
    			log.Fatalf("can't read %s: %v", a.genfile, err)
    		}
    		seen := make(map[string]bool, len(a.ops))
    		for _, m := range rxOp.FindAllSubmatch(src, -1) {
    			seen[string(m[1])] = true
    		}
    		for _, op := range a.ops {
    			if !seen[op.name] {
    				log.Fatalf("Op%s%s has no code generation in %s", a.name, op.name, a.genfile)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    			},
    		},
    		{
    			// Non-resource-url tests
    			clusterRoles: []*rbacv1.ClusterRole{
    				newClusterRole("non-resource-url-getter", newRule("get", "", "", "/apis")),
    				newClusterRole("non-resource-url", newRule("*", "", "", "/apis")),
    				newClusterRole("non-resource-url-prefix", newRule("get", "", "", "/apis/*")),
    			},
    			clusterRoleBindings: []*rbacv1.ClusterRoleBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

                if (form instanceof EditForm) {
                    return ComponentUtil.getComponent(RoleService.class).getRole(((EditForm) form).id);
                }
                break;
            default:
                break;
            }
            return OptionalEntity.empty();
        }
    
        public static OptionalEntity<Role> getRole(final CreateForm form) {
            return getEntity(form).map(entity -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/fmt/scan.go

    			}
    			for j := 0; j < newlines; j++ {
    				inputc := s.getRune()
    				for isSpace(inputc) && inputc != '\n' {
    					inputc = s.getRune()
    				}
    				if inputc != '\n' && inputc != eof {
    					s.errorString("newline in format does not match input")
    				}
    			}
    			if trailingSpace {
    				inputc := s.getRune()
    				if newlines == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top