Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getF32 (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          Type tensor_type_f32;
          if (tensor_type.hasRank()) {
            tensor_type_f32 = tensorflow::GetTypeFromTFTensorShape(
                tensor_type.getShape(), FloatType::getF32(context));
          } else {
            tensor_type_f32 = UnrankedTensorType::get(FloatType::getF32(context));
          }
          // Add cast to f32 to conform with element type of result.
          operand = rewriter.create<CastOp>(op.getLoc(), tensor_type_f32, operand);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			srcx := (*uintptr)(unsafe.Pointer(src + (addr - dst)))
    			p := buf.get2()
    			p[0] = *dstx
    			p[1] = *srcx
    		}
    	}
    }
    
    // bulkBarrierPreWriteSrcOnly is like bulkBarrierPreWrite but
    // does not execute write barriers for [dst, dst+size).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top