Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for curNum (0.13 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    				ab.Put1(byte(op))
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Z_m_r:
    				ab.Put1(byte(op))
    				ab.asmand(ctxt, cursym, p, p.GetFrom3(), &p.To)
    
    			case Zm2_r:
    				ab.Put2(byte(op), o.op[z+1])
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Zm_r_xm:
    				ab.mediaop(ctxt, o, op, int(yt.zoffset), z)
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Zm_r_xm_nr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    						falign = 32
    					}
    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    	}
    
    	c.cursym.Size = pc
    	c.cursym.Func().Align = falign
    	c.cursym.Grow(c.cursym.Size)
    
    	// lay out the code, emitting code and data relocations.
    
    	bp := c.cursym.P
    	var i int32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    				}
    			}
    		}
    		loop++
    	}
    
    	c.cursym.Size = int64(len(buffer))
    	if c.cursym.Size%funcAlign != 0 {
    		c.cursym.Size += funcAlign - (c.cursym.Size % funcAlign)
    	}
    	c.cursym.Grow(c.cursym.Size)
    	copy(c.cursym.P, buffer)
    
    	// Mark nonpreemptible instruction sequences.
    	// We use REGTMP as a scratch register during call injection,
    	// so instruction sequences that use REGTMP are unsafe to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    				}
    			}
    
    			pc += int64(m)
    		}
    	}
    
    	pc += -pc & (funcAlign - 1)
    	c.cursym.Size = pc
    
    	/*
    	 * lay out the code, emitting code and data relocations.
    	 */
    	c.cursym.Grow(c.cursym.Size)
    	bp := c.cursym.P
    	psz := int32(0)
    	var i int
    	var out [6]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		sz := o.size(c.ctxt, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK-LABEL: tranpose_arg64
      // CHECK: "tfl.transpose"
    }
    
    func.func @cumsum(%arg0: tensor<3x3xf32>, %arg1: tensor<i32>) -> tensor<3x3xf32> {
      %0 = "tf.Cumsum"(%arg0, %arg1) {exclusive = false, reverse = false} : (tensor<3x3xf32>, tensor<i32>) -> tensor<3x3xf32>
      func.return %0 : tensor<3x3xf32>
      // CHECK-LABEL: cumsum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    				vaTmp := va
    				for j := i; j < len(ctxt.Textp); j++ {
    					curSym := ctxt.Textp[j]
    					if symPkg := ldr.SymPkg(curSym); symPkg == "" || curPkg != symPkg {
    						break
    					}
    					// We do not pass big to assignAddress here, as this
    					// can result in side effects such as section splitting.
    					sect, n, vaTmp = assignAddress(ctxt, sect, n, curSym, vaTmp, false, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return TF::ArraysAreCastCompatible(l, r);
        }
    
      }];
    }
    
    def TFL_CumsumOp: TFL_Op<"cumsum", [
        Pure,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        TFL_OperandHasRank<1, 0>]> {
      let summary = "Cumsum operator";
    
      let description = [{
        Compute the cumulative sum of the tensor x along axis.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

        "tf.Yield"(%arg1) : (tensor<f32>) -> ()
      }) {is_stateless = false} : (tensor<i32>) -> tensor<i1>
      func.return
    }
    
    // -----
    
    // Test valid tf.Cumsum
    func.func @testCumsum(%arg: tensor<8x16xf32>, %axis: tensor<i32>) -> tensor<8x16xf32> {
      %0 = "tf.Cumsum"(%arg, %axis) : (tensor<8x16xf32>, tensor<i32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    herøy.nordland.no
    hitra.no
    hjartdal.no
    hjelmeland.no
    hobol.no
    hobøl.no
    hof.no
    hol.no
    hole.no
    holmestrand.no
    holtalen.no
    holtålen.no
    hornindal.no
    horten.no
    hurdal.no
    hurum.no
    hvaler.no
    hyllestad.no
    hagebostad.no
    hægebostad.no
    hoyanger.no
    høyanger.no
    hoylandet.no
    høylandet.no
    ha.no
    hå.no
    ibestad.no
    inderoy.no
    inderøy.no
    iveland.no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top