Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for substVar (0.12 sec)

  1. src/cmd/compile/internal/types2/infer.go

    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    		if traceInference {
    			u.tracef("-- simplify %s ➞ %s", tparams, inferred)
    		}
    		// TODO(gri) Instead of creating a new substMap for each iteration,
    		// provide an update operation for substMaps and only change when
    		// needed. Optimization.
    		smap := makeSubstMap(tparams, inferred)
    		n := 0
    		for _, index := range dirty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    		if traceInference {
    			u.tracef("-- simplify %s ➞ %s", tparams, inferred)
    		}
    		// TODO(gri) Instead of creating a new substMap for each iteration,
    		// provide an update operation for substMaps and only change when
    		// needed. Optimization.
    		smap := makeSubstMap(tparams, inferred)
    		n := 0
    		for _, index := range dirty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        labels.insert('a' + i);
        labels.insert('A' + i);
      }
    
      auto is_start_of_ellipsis = [](StringRef equation, int start_index) {
        if (equation.size() < (start_index + 3)) return false;
    
        if (equation.substr(start_index, 3) != "...") return false;
        return true;
      };
    
      int lhs_count = 0;
      const int lhs_size = lhs.size();
      for (int i = 0; i < lhs_size; ++i) {
        const char label = lhs[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      if (!func_name.starts_with(kCompositeFuncPrefix)) return "";
    
      auto base_function_name =
          llvm::Twine(kQuantizedFuncPrefix)
              .concat(llvm::Twine(func_name.substr(kCompositeFuncPrefix.size())
                                      .rsplit("_fn")
                                      .first));
    
      if (merged_with_dequantize) {
        return base_function_name.concat("_float_output_fn").str();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      std::string data;
      if (parser.parseString(&data)) {
        return nullptr;
      }
      if (data.size() < 2 || data.substr(0, 2) != "0x") {
        parser.emitError(parser.getNameLoc(), "Hex string doesn't start with `0x`");
        return nullptr;
      }
    
      std::string bytes_data = absl::HexStringToBytes(data.substr(2));
      return ConstBytesAttr::get(parser.getBuilder().getContext(), bytes_data);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    tive:[],positive:[].concat(i),patterns:[].concat(i)}],escapePath:i=>i}});var yo,Kd=C(()=>{l();yo=i=>i});var Zd,eh=C(()=>{l();Zd=()=>""});function th(i){let e=i,t=Zd(i);return t!=="."&&(e=i.substr(t.length),e.charAt(0)==="/"&&(e=e.substr(1))),e.substr(0,2)==="./"&&(e=e.substr(2)),e.charAt(0)==="/"&&(e=e.substr(1)),{base:t,glob:e}}var rh=C(()=>{l();eh()});function ih(i,e){let t=e.content.files;t=t.filter(o=>typeof o=="string"),t=t.map(yo);let r=En.generateTasks(t),n=[],a=[];for(let o of r)n.push(....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. RELEASE.md

    *   Fixes a crash in `tf.transpose` with complex inputs
        ([CVE-2021-29618](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29618))
    *   Fixes a crash in `tf.strings.substr` due to `CHECK`-fail
        ([CVE-2021-29617](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29617))
    *   Fixes a segfault in `tf.raw_ops.SparseCountSparseOutput`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      local -r prefix="${2:-}"
      local -r suffix="${3:-}"
      local -r dirname=$(dirname "${file}")
      local -r tmpfile=$(mktemp "${dirname}/filtered.XXXX")
    
      touch "${file}"
      awk -v pfx="${prefix}" 'substr($0,1,length(pfx)) != pfx { print }' "${file}" > "${tmpfile}"
      echo "${prefix}${suffix}" >> "${tmpfile}"
      mv "${tmpfile}" "${file}"
    }
    
    function write-pki-data {
      local data="${1}"
      local path="${2}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top