Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for vp (0.06 sec)

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

      }
    
      // Return operand as a constant attribute.
      auto operand_as_constant_fn = [&](Value operand) {
        ValuePort vp(operand);
        Attribute attr = ComputeOutputComponent(vp);
        if (!attr && matchPattern(operand, m_Constant(&attr)))
          RecordValue(vp, attr);
        return attr;
      };
    
      // Return op result as a shape.
      auto op_result_as_shape_fn = [&](InferenceContext& context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	}
    
    	// Validate mask is of the binary form 1+0*1+ or 0*1+0*
    	// Isolate rightmost 1 (if none 0) and add.
    	v := mask
    	vp := (v & -v) + v
    	// Likewise, check for the wrapping (inverted) case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    	return mb, (me - 1) & 31, (v&vp == 0 || vn&vpn == 0) && v != 0
    }
    
    // Decompose a mask of contiguous bits into a begin (mb) and
    // end (me) value.
    //
    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/reflect/all_test.go

    	var i int32 = 1234
    	vip := ValueOf(&ip)
    	vi := ValueOf(&i).Elem()
    	vip.Elem().Set(vi.Addr())
    	if *ip != 1234 {
    		t.Errorf("got %d, want 1234", *ip)
    	}
    
    	ip = nil
    	vp := ValueOf(&ip).Elem()
    	vp.Set(Zero(vp.Type()))
    	if ip != nil {
    		t.Errorf("got non-nil (%p), want nil", ip)
    	}
    }
    
    func TestPtrSetNil(t *testing.T) {
    	var i int32 = 1234
    	ip := &i
    	vip := ValueOf(&ip)
    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. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    ��d���ꛬVȇ�d��!ϧ�&���L�>5��d����6Y�Ռ=��\��[y�ոR�P������� �$z��b���u��egM]�K�j��p����2�[�!ҏm ��hs(�լ�=��5�M�L�wp\Sx��k�N6���#���^߲?�RzI�G��C��M��窹}�'}~pW�gMް�i�y}9|^����0�/E�+��&�z+`^�^��0��B��i�y�0�Z�8w��!� ��ɼ^ �W��;�뵐y��d^�ֻ̫���Jȼ�?m2�S��vp�y� �W��M��0�Z�r;̫#d^�6�׉�y�z?�üN��+��&�z)`^�ޯ�0��B��i�yuě�6�n?���x��&�* ޤ�yv�yo��d^ě����0�B�M�O�̫�x�����UH� �i�yo��P�ü �7�?m2��Mz@w�W!�&��M�U@�Io'��*$ބ��ɼ �7�m��a^�ě�6�W�&���;̫�x��&�* ޤ�;p�yo��x^'�Mz����׉�x��&�* ޤ��n�yo��d^...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
Back to top