Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for outp (0.07 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs);
    }
    
    
    def TFL_HashtableSizeOp: TFL_Op<"hashtable_size", []> {
      let summary = "Computes the number of elements in the given table.";
    
      let arguments = (ins
        TFL_ResourceTensor:$hash_table
      );
    
      let results = (outs
        TFL_I64Tensor:$out
      );
    }
    
    def TFL_BroadcastArgsOp : TFL_Op<"broadcast_args",[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p521_fiat64.go

    	out1[21] = x48
    	out1[22] = x50
    	out1[23] = x51
    	out1[24] = x52
    	out1[25] = x54
    	out1[26] = x56
    	out1[27] = x58
    	out1[28] = x60
    	out1[29] = x62
    	out1[30] = x64
    	out1[31] = x65
    	out1[32] = x66
    	out1[33] = x68
    	out1[34] = x70
    	out1[35] = x72
    	out1[36] = x74
    	out1[37] = x76
    	out1[38] = x78
    	out1[39] = x79
    	out1[40] = x80
    	out1[41] = x82
    	out1[42] = x84
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	v := MakeFunc(FuncOf([]Type{TypeOf(K(""))}, []Type{TypeOf(V(0))}, false), fn)
    
    	outs := v.Call([]Value{ValueOf(K("gopher"))})
    	if len(outs) != 1 {
    		t.Fatalf("v.Call returned %v, want exactly one result", outs)
    	} else if outs[0].Type() != TypeOf(V(0)) {
    		t.Fatalf("c.Call[0] is type %v, want %v", outs[0].Type(), TypeOf(V(0)))
    	}
    	f := outs[0].Float()
    	if f != 3.14 {
    		t.Errorf("constructed func returned %f, want %f", f, 3.14)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    			}
    		}
    		var out []byte
    		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--cflags", pcflags, "--", pkgs)
    		if err != nil {
    			desc := b.PkgconfigCmd() + " --cflags " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
    			return nil, nil, sh.reportCmd(desc, "", out, err)
    		}
    		if len(out) > 0 {
    			cflags, err = splitPkgConfigOutput(bytes.TrimSpace(out))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    		t.Fatal("exec wipe", err)
    	}
    
    	_, err = db.ExecContext(ctx, "CREATE|keys|dec1=any,str1=string,out1=string,array1=any")
    	if err != nil {
    		t.Fatal("exec create", err)
    	}
    
    	o1 := ""
    	_, err = db.ExecContext(ctx, "INSERT|keys|dec1=?A,str1=?,out1=?O1,array1=?", Named("A", decimalInt{123}), "hello", Named("O1", Out{Dest: &o1}), []int64{42, 128, 707}, doNotInclude{})
    	if err != nil {
    		t.Fatal("exec insert", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top