Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ju32 (0.05 sec)

  1. tensorflow/compiler/aot/codegen_test.cc

                  xla::ShapeUtil::MakeShape(xla::F32, {1}),
                  xla::ShapeUtil::MakeShape(xla::S32, {5}),
              },
              xla::ShapeUtil::MakeTupleShape({
                  xla::ShapeUtil::MakeShape(xla::U32, {5, 6}),
                  xla::ShapeUtil::MakeShape(xla::F32, {1}),
                  xla::ShapeUtil::MakeShape(xla::S32, {5}),
              }))
              .ToProto();
      compile_result.entry_point = "entry_point";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen_test_h.golden

    //   is guaranteed that no thread may call a non-const method.
    //
    // The logical function signature is:
    //   ((unknown): f32[1,2], (unknown): s64[3,4], (unknown): f32[1], (unknown): f32[1], (unknown): s32[5]) -> (u32[5,6], f32[1], s32[5])
    //
    // Memory stats:
    //   arg bytes total:    392
    //   arg bytes aligned:  576
    //   temp bytes total:   171
    //   temp bytes aligned: 512
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/runtime/debuglog.go

    //go:nosplit
    func (l *dlogger) u8(x uint8) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u16(x uint16) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u32(x uint32) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u64(x uint64) *dlogger {
    	if !dlogEnabled {
    		return l
    	}
    	l.w.byte(debugLogUint)
    	l.w.uvarint(x)
    	return l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen.cc

        case xla::S64:
          *str = "int64_t";
          break;
        case xla::U8:
          *str = "tensorflow::uint8";
          break;
        case xla::U16:
          *str = "tensorflow::uint16";
          break;
        case xla::U32:
          *str = "tensorflow::uint32";
          break;
        case xla::U64:
          *str = "tensorflow::uint64";
          break;
        case xla::F32:
          *str = "float";
          break;
        case xla::F64:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top