Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getCfg (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            return failure();
          }
          output_types = {new_output_type};
        } else {
          output_types = {output_type.clone(elem_type.getStorageType())};
        }
    
        SmallVector<Value> args = {q_op.getArg(), scale, zero_point};
        FlatSymbolRefAttr func_name =
            FlatSymbolRefAttr::get(rewriter.getStringAttr(kQuantizeFuncName));
    
        auto quantize_call = rewriter.create<TF::PartitionedCallOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		w.WriteHeader(http.StatusOK)
    		w.Header().Add("Content-Type", "text/html")
    		w.Write([]byte(content))
    	}
    
    	resp, err := http.Get(fw.testHTTPServer.URL + "/logs/")
    	if err != nil {
    		t.Fatalf("Got error GETing: %v", err)
    	}
    	defer resp.Body.Close()
    
    	body, err := httputil.DumpResponse(resp, true)
    	if err != nil {
    		// copying the response body did not work
    		t.Errorf("Cannot copy resp: %#v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          }
          Operation* symbol = symbol_table.lookup(caller.getF());
          if (symbol == nullptr) {
            func.emitError() << "Symbol not found in SymbolTable: "
                             << caller.getF();
            return LogicalResult::failure();
          }
          if (!llvm::isa<func::FuncOp>(symbol)) {
            func.emitError() << "Invalid callee: " << caller.getF();
            return LogicalResult::failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_port_get port_get "libc.so"
    //go:cgo_import_dynamic libc_port_getn port_getn "libc.so"
    //go:cgo_import_dynamic libc_putmsg putmsg "libc.so"
    //go:cgo_import_dynamic libc_getmsg getmsg "libc.so"
    
    //go:linkname procpipe libc_pipe
    //go:linkname procpipe2 libc_pipe2
    //go:linkname procgetsockname libc_getsockname
    //go:linkname procGetcwd libc_getcwd
    //go:linkname procgetgroups libc_getgroups
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                ( (DfsReferralDataImpl) dr ).fixupDomain(req.getDomain());
            }
            if ( log.isDebugEnabled() ) {
                log.debug("Got referral " + dr);
            }
    
            getContext().getDfs().cache(getContext(), path, dr);
            throw new DfsReferral(dr);
        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	GOVCS=*:off
    
    The 'go env -w' command (see 'go help env') can be used to set the GOVCS
    variable for future go command invocations.
    `,
    }
    
    var (
    	getD        dFlag
    	getF        = CmdGet.Flag.Bool("f", false, "")
    	getFix      = CmdGet.Flag.Bool("fix", false, "")
    	getM        = CmdGet.Flag.Bool("m", false, "")
    	getT        = CmdGet.Flag.Bool("t", false, "")
    	getU        upgradeFlag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // process (["USER=go", "PWD=/tmp"]).
    func Exec(argv0 string, argv []string, envv []string) error {
    	return syscall.Exec(argv0, argv, envv)
    }
    
    func Getag(path string) (ccsid uint16, flag uint16, err error) {
    	var val [8]byte
    	sz, err := Getxattr(path, "ccsid", val[:])
    	if err != nil {
    		return
    	}
    	ccsid = uint16(EncodeData(val[0:sz]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top