throbber
/**************************************************************/
`/* GetInter.cpp */
`/* Hui Jin */
`/**************************************************************/
`/*
` file description:
` Get appropriate permutation for LDGM (LDPC) code for given
` degree sequence L and R.
` In first version. R sequence is constant.
` Author: Hui Jin
` date: 3/12/2000
`
` modification: 3/12/2000 first version.
` One important thing is, L and R should
`be
` in decreasing order.
` 4/5/2000 Second version. Leave GetInter() there.
` implement new version newGetInter()
`using
` Gallager idea, similar to his ensemble
`but has
` variable and check nodes reversed. See
`page 38
` Book III.
` 4/9/2000 Method II has problems, return to
`GetInter(),
` but change the way the next number is
` generated.
` L and R should be
` in decreasing order !!!!
` And we should use the same .prm in
`IRAsimu.
` 4/12/2000 We are going to arrange the degree 2
`nodes on
` the left, because those are causing
`problems of
` short cycles in decoding.
` The main idea is to arrange them as a
`path on
` nodes 0, t, 2t, 3t, ... (n-1)t, where t
`is an
` integer that gcd(t,n)=1, and t is around
` sqrt(n). So this is like the right part
`except
` in different order.
` In this way, We can make sure the
` shortest cycle consisting only degree 2
`node is
` around 2t. Which is good.
` Degree sequence is still in decreasing
`
`0001
`
`CALTECH - EXHIBIT 2028
`Apple Inc. v. California Institute of Technology
`IPR2017-00701
`
`

`

`order,
` but we take care of degree 2 nodes
`first. The
` rest the same as 4/9/2000 version.
`*/
`
`
`
`#include <iostream.h>
`#include <fstream.h>
`#include <stdlib.h>
`#include <math.h>
`
`#include "vector.h"
`#include "ldpc.h"
`#include "paramfio.h"
`#include "datatype.hh"
`#include "random.hh"
`
`void printusage()
`{
`
`printf("Usage: GetInter filename.prm infolen \n");
` exit(1);
`
`} v
`
`oid getLRdegree(degree_sequence& L, degree_sequence &R, char *
`filename)
`
`{
`
` ivector deg;
`vector fe;
`paramfio P;
` P.set_filename(filename);
`P.read("variable degree", deg);
`P.read("variable fraction", fe);
`L.init(deg.getsize());
`L.d = deg;
`L.fe = fe;
`P.read("check degree", deg);
`P.read("check fraction", fe);
`R.init(deg.getsize());
`R.d = deg;
`R.fe = fe;
`L.edge_to_node();
`R.edge_to_node();
`}
`
`0002
`
`

`

`/*
`delete the index term from a list with length=len.
` index is in [0, len-1].
`*/
`
`void list_del(int list[], int len, int index)
`
` for(int i=index; i<len-1; i++)
` list[i]=list[i+1];
`}
`
`{
`
`{
`
`/*
`3/12/2000 Hui Jin
`get an interleaver for LDGM code.
`Any two edge in the same variable node won't be in the same check
`node, we
`garantee the second part by imposing if two edges are adjacent to the
`same
`variable node, their permutation must be with distance >=k, which can
`be
`adjacent to the same check node.
`help function: void list_del(int list[], int len, int index)
`modification: 4/9/2000
` only check distance property in the same node.
`*/
`void getInter(int *_interleaver, degree_sequence & LV, int nv[], int
`_len, int check_deg)
`
`
` //how many numbers left in the pool.
` int remain_len = _len;
` int k=0;
` int distance;
`
` int s_ch;
`
` //the set of all the numbers.
` int list[_len];
` int list_index;
` for(int m=0; m< _len; m++) list[m]=m;
`
`
` RandomGenerator rand;
`
` for(int i=0; i< LV.n; i++)
` for(int l=0; l< nv[i]; l++)
` for(int j=0; j<LV.d[i]; j++)
` {
` //randomly get a number in the remaining numbers.
` list_index = (int) floor(rand.UNI()*remain_len);
`
`0003
`
`

`

` _interleaver[k]=list[list_index];
` distance=2*check_deg;
` //check if all the close positions have a permutation with
` // appropriate distance.
` s_ch=k-j;
` while(s_ch<k)
` { //if degree 2 nodes, special care.
` if(LV.d[i]==2) distance = 200;
` if(abs(_interleaver[s_ch]-_interleaver[k])>= distance)
`s_ch++;
` else
` {
` list_index = (int) floor(rand.UNI()*remain_len);
` _interleaver[k]=list[list_index];
` s_ch=k-j;
` }
` }
` //we found the appropriate number, now delete that element
`from the
` // remain list.
` list_del(list, remain_len, list_index);
` k++;
` remain_len--;
` }
`
`
`
`}
`
`int main(int argc, char* argv[])
`
`{
`
`
`
`
`if (argc !=3)
`{
`
`printusage();
`
`}
`
`
`
`degree_sequence LV;
`degree_sequence LC;
`int argcount = 1;
`
`
` getLRdegree(LV, LC, argv[argcount++]);
`
` int info_len= atoi(argv[argcount++]);
`
`0004
`
`

`

` int nv[LV.n];
` int LEdge_num=0;
` double s=0;
` for(int i=0; i< LV.n-1; i++)
` {
` nv[i]= int(floor((s+LV.fn[i])*info_len) -
`floor(s*info_len));
` s+=LV.fn[i];
` LEdge_num += nv[i] * LV.d[i];
` }
`
` nv[LV.n-1]= info_len -(int) floor(s*info_len);
` LEdge_num += nv[LV.n-1] * LV.d[LV.n-1];
`
`
` //assume here LC.av_degree() is constant
` int check_deg= (int) floor(LC. av_degree_node());
`
` int _len= LEdge_num;
`
` cout << "Total length permutation " << _len << endl;
`
` int _Interleaver[_len];
`
`
`
` getInter(_Interleaver, LV, nv, _len, check_deg);
`
`
` for(int i=0; i< _len; i++)
` cout << _Interleaver[i]<< endl;
`
`
`
`
`}
`
`0005
`
`

`

`0006
`
`0006
`
`

This document is available on Docket Alarm but you must sign up to view it.


Or .

Accessing this document will incur an additional charge of $.

After purchase, you can access this document again without charge.

Accept $ Charge
throbber

Still Working On It

This document is taking longer than usual to download. This can happen if we need to contact the court directly to obtain the document and their servers are running slowly.

Give it another minute or two to complete, and then try the refresh button.

throbber

A few More Minutes ... Still Working

It can take up to 5 minutes for us to download a document if the court servers are running slowly.

Thank you for your continued patience.

This document could not be displayed.

We could not find this document within its docket. Please go back to the docket page and check the link. If that does not work, go back to the docket and refresh it to pull the newest information.

Your account does not support viewing this document.

You need a Paid Account to view this document. Click here to change your account type.

Your account does not support viewing this document.

Set your membership status to view this document.

With a Docket Alarm membership, you'll get a whole lot more, including:

  • Up-to-date information for this case.
  • Email alerts whenever there is an update.
  • Full text search for other cases.
  • Get email alerts whenever a new case matches your search.

Become a Member

One Moment Please

The filing “” is large (MB) and is being downloaded.

Please refresh this page in a few minutes to see if the filing has been downloaded. The filing will also be emailed to you when the download completes.

Your document is on its way!

If you do not receive the document in five minutes, contact support at support@docketalarm.com.

Sealed Document

We are unable to display this document, it may be under a court ordered seal.

If you have proper credentials to access the file, you may proceed directly to the court's system using your government issued username and password.


Access Government Site

We are redirecting you
to a mobile optimized page.





Document Unreadable or Corrupt

Refresh this Document
Go to the Docket

We are unable to display this document.

Refresh this Document
Go to the Docket