Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sris (0.07 sec)

  1. tensorflow/compiler/jit/BUILD

        ],
        deps = [":flags_headers"],
    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "size_utils",
        srcs = [
            "utils/size_utils.cc",
        ],
        hdrs = [
            "utils/size_utils.h",
        ],
        deps = [
            "@llvm-project//mlir:IR",
        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. tensorflow/BUILD

    # filegroup(
    #     name = "copybara_library",
    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      absl::flat_hash_set<const Node*> guaranteed_const_nodes;
      std::vector<const Node*> srcs;
      srcs.reserve(src_arg_pairs.size());
      for (const auto& src_arg : src_arg_pairs) {
        srcs.push_back(src_arg.first);
      }
      ReverseDFSFrom(
          graph, srcs, /*enter=*/nullptr,
          /*leave=*/[&guaranteed_const_nodes](const Node* n) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // `--dsos` flag to specify a list of shared objects to be loaded in order.
    // If the flag is not used, no shared objects are loaded.
    //
    // Every filesystem provides support for accessing URIs of form
    // `[<scheme>://]<path>` where `<scheme>` is optional (if missing, we are
    // accessing local paths). This test suite tests exactly one scheme for each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	var freq, bucket []int64
    	if len(tmp) >= 2*textMax {
    		freq, bucket = tmp[:textMax], tmp[textMax:2*textMax]
    		freq[0] = -1 // mark as uninitialized
    	} else {
    		freq, bucket = nil, tmp[:textMax]
    	}
    
    	// The SAIS algorithm.
    	// Each of these calls makes one scan through sa.
    	// See the individual functions for documentation
    	// about each's role in the algorithm.
    	numLMS := placeLMS_8_64(text, sa, freq, bucket)
    	if numLMS <= 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

                               TF_Status* status);
    
      /// Translates `uri` to a filename for the filesystem
      ///
      /// A filesystem is registered for a specific scheme and all of the methods
      /// should work with URIs. Hence, each filesystem needs to be able to
      /// translate from an URI to a path on the filesystem. For example, this
      /// function could translate `fs:///path/to/a/file` into `/path/to/a/file`, if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/ppc64.s

    	OR $1234567, R5                 // 64a5001260a5d687
    	OR $1234567, R5, R3             // 64a300126063d687
    	OR $2147483648, R5, R3          // 64a38000
    	OR $2147483649, R5, R3          // 64a3800060630001
    	ORIS $255, R3, R4               // 646400ff
    	OR $16711680, R3, R4            // 646400ff
    
    	XOR $1, R3                      // 68630001
    	XOR $1, R3, R4                  // 68640001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    			var o1 uint32
    			if target.IsBigEndian() {
    				o1 = binary.BigEndian.Uint32(p[r.Off()-2:])
    			} else {
    				o1 = binary.LittleEndian.Uint32(p[r.Off():])
    			}
    			switch o1 >> 26 {
    			case 25, // oris
    				27, // xoris
    				29: // andis
    				if t>>16 != 0 {
    					goto overflow
    				}
    
    			default:
    				if int64(int16(t)) != t {
    					goto overflow
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top