FLAC Agent Build: Difference between revisions

From mywiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
|Analysis=I decided to loose my agent against flac files on the NVDIA GPU I have so closed on using C/C++ and CUDA.   
|Analysis=I decided to loose my agent against flac files on the NVDIA GPU I have so closed on using C/C++ and CUDA.   


Currently I'd wrestling with the linking of the flac decoder example.
Got linker to work. created a.out in Debug directory
|Thread=FLAC Agent
|Thread=FLAC Agent
|EditDate=2024-08-06
|EditDate=2024-08-06
Line 11: Line 11:
I want to build an agent that will read flac music files and identify patterns in them.  Once it has the patterns identified I want to see if can draw images in line with the evolving songs and long term improvise based on optimum patterns.  Very long term may play sounds that draw a message the machine wants to tell us.
I want to build an agent that will read flac music files and identify patterns in them.  Once it has the patterns identified I want to see if can draw images in line with the evolving songs and long term improvise based on optimum patterns.  Very long term may play sounds that draw a message the machine wants to tell us.
==Log==
==Log==
--[[User:Johnny|Johnny]] ([[User talk:Johnny|talk]]) 20:51, 6 August 2024 (UTC) Got linker to work.
--[[User:Johnny|Johnny]] ([[User talk:Johnny|talk]]) 19:14, 6 August 2024 (UTC) First had to get a working version of Eclipse that ran on the version of Ubuntu I had.  This required updating Eclipse to include the development version so I am currently running Eclipse version=4.32.0 and Ubuntu Oracular Oriole (development branch) which was the only version I found that allowed my instruction debug due to comaptibility issues after Ubuntu updated to Wayland from X11.
--[[User:Johnny|Johnny]] ([[User talk:Johnny|talk]]) 19:14, 6 August 2024 (UTC) First had to get a working version of Eclipse that ran on the version of Ubuntu I had.  This required updating Eclipse to include the development version so I am currently running Eclipse version=4.32.0 and Ubuntu Oracular Oriole (development branch) which was the only version I found that allowed my instruction debug due to comaptibility issues after Ubuntu updated to Wayland from X11.



Revision as of 20:51, 6 August 2024


EditDate 2024-08-06

Related Threads: FLAC Agent

I am building a self-learning FLAC Agent and this will track the trials and tribulations of the build here.

I decided to loose my agent against flac files on the NVDIA GPU I have so closed on using C/C++ and CUDA.

Got linker to work. created a.out in Debug directoryWeb References https://developer.nvidia.com/cuda-toolkit, https://xiph.org/flac/, https://ftp.osuosl.org/pub/xiph/releases/flac/

I want to build an agent that will read flac music files and identify patterns in them. Once it has the patterns identified I want to see if can draw images in line with the evolving songs and long term improvise based on optimum patterns. Very long term may play sounds that draw a message the machine wants to tell us.

Log

--Johnny (talk) 20:51, 6 August 2024 (UTC) Got linker to work. --Johnny (talk) 19:14, 6 August 2024 (UTC) First had to get a working version of Eclipse that ran on the version of Ubuntu I had. This required updating Eclipse to include the development version so I am currently running Eclipse version=4.32.0 and Ubuntu Oracular Oriole (development branch) which was the only version I found that allowed my instruction debug due to comaptibility issues after Ubuntu updated to Wayland from X11.

Once I had a working development environment I install [ttps://ftp.osuosl.org/pub/xiph/releases/flac/ libFLAC] Unfortunately I've been unable to get a clean link in the development environment so I'm now trying Configure C project with cmake in eclipse manual method to assemble and successfully compile decoder.

Manual Configure FLAC in Eclipse

  1. cmake project in Eclipse manual confiure. Johnny (talk) 19:16, 6 August 2024 (UTC)